/* Reset and base styles */
:root {
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
}

 /* Base fonts: Playfair Display headings + Roboto body */
body {
    font-family: var(--body-font, sans-serif);
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

/* Headings ONLY (controlled) */
h1, h2 {
    font-family: var(--heading-font);
    font-weight: 700;
}

h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

/* Navigation */
.nav-menu a {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
}

/* Logo */
.logo h1 {
    font-family: var(--heading-font);
    font-weight: 800;
}

/* Logo */
.logo img {
    max-width: 120px;  /* Reduced from 150px */
    height: auto;
    display: block;
}

/* Footer Logo */
.footer-logo-img {
    max-width: 100px !important;  /* Further reduced to 100px */
    height: auto;
    display: block;
}

/* Additional logo styling adjustments */
.logo-wrapper .t-logo img {
    max-height: 70px;  /* Reduced from 80px */
    width: auto;
    display: block;
}

/* Paragraph refinement */
p {
    color: var(--medium-grey);
}

:root {
    --primary-color: #e30613;
    --dark-color: #000;
    --grey-color: #333;
    --light-grey: #f4f4f4;
    --medium-grey: #666;
    --white-color: #fff;
    --transition: all 0.3s ease;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header and Navigation - Transparent Style */
header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

/* On scroll effect - add background for better readability when scrolling */
header.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
}

.hamburger {
    margin-left: 20px;
    order: 2;
}

.logo h1 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    margin-right: auto; /* Pushes everything else to the right */
    padding-left: 0; /* Remove any padding to position at the far left */
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    max-width: 100px;  /* Consistent with footer */
    height: auto;
    display: block;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 5px;
    display: block;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    display: none;
    list-style: none;
    z-index: 1001;
    border-radius: 4px;
    overflow: hidden;
    border-top: 2px solid var(--primary-color);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 15px;
    display: block;
    color: var(--white-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:hover {
    background-color: rgba(227, 6, 19, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(255,255,255,0.1);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white-color);
    transition: var(--transition);
}

/* Main Content Padding to account for fixed header */
main {
    padding-top: 80px; /* Adjust based on your header height */
}

/* Hero Section - Full Background Image */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    color: var(--white-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -80px; /* Correct offset for the fixed header */
    background-attachment: fixed; /* Creates parallax effect */
    z-index: 1; /* Ensure proper stacking with header */
    width: 100%;
    overflow: hidden; /* Prevent any potential overflow issues */
}

.hero .container {
    max-width: 900px;
    z-index: 1;
    padding: 0 20px;
    margin-top: 80px; /* To account for the header offset */
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out forwards;
    line-height: 1.1;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out forwards;
}


.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero .btn {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
    padding: 14px 34px;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Services Section */
.features {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.features h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--dark-color);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover:before {
    height: 5px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--medium-grey);
}

.service-card a {
    display: inline-block;
    color: var(--primary-color);
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.service-card a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-card a:hover:after {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 0;
}

/* Updated Footer Styling */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.footer-logo h2 {
    color: var(--white-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-logo-img {
    max-width: 150px;  /* Reduced from 180px */
    height: auto;
    display: block;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--white-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #aaa;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
    margin-top: 4px;
}

/* Special alignment for map marker icon */
.footer-contact p .fa-map-marker-alt {
    font-size: 18px; /* Slightly larger icon */
    margin-top: 2px; /* Adjust vertical position */
    margin-left: 2px; /* Center the icon */
    margin-right: 12px; /* Add extra space after icon */
}

.footer-contact p {
    margin-bottom: 15px;
    color: #aaa;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
    min-width: 20px;
    text-align: center;
    margin-top: 4px;
}

.footer-contact p:nth-child(2):before {
    content: '\f0e0';
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #222;
    color: #777;
    font-size: 0.9rem;
}

/* Footer responsive improvements */
@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
        margin-bottom: 1rem;
        padding: 0 15px;
    }
    
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 1rem 15px;
    }
}

/* Page Header for Inner Pages */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/about-hero-image.jpg') no-repeat center center/cover;
    color: var(--white-color);
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
    /* Additional properties to ensure full coverage */
    width: 100%;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    margin-top: -80px; /* Match the hero section offset */
    padding-top: 160px; /* Increase padding to account for navbar */
    padding-bottom: 80px;
}

/* Animations and Effects */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(227, 6, 19, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        background-color: var(--dark-color);
        padding: 0;
    }
    
    header .container {
        position: relative;
        padding: 15px 20px !important;
        justify-content: space-between !important;
        height: 70px;
        box-sizing: border-box;
    }
    
    .logo {
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        order: 2 !important;
        padding: 12px !important;
        width: 50px !important;
        height: 50px !important;
        z-index: 1002 !important;
    }
    
    .bar {
        width: 28px !important;
        height: 3px !important;
        margin: 2px 0 !important;
        background-color: var(--white-color) !important;
    }
    
    main {
        padding-top: 70px; /* Match header height */
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100%;
        top: 80px !important; /* Adjusted for header padding */
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        text-align: left;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1000;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu li {
        margin: 0;
        padding: 18px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        position: relative;
    }

    .nav-menu li:hover {
        background-color: rgba(255,255,255,0.05);
    }

    .nav-menu a {
        color: white !important;
        font-size: 1.1rem;
        padding: 0 !important;
    }

    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.1);
        background-color: rgba(0,0,0,0.2);
        margin: 0 !important;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li {
        padding: 12px 25px;
        border-bottom: none;
    }

    .dropdown-menu a {
        font-size: 1rem;
        padding: 8px 0 !important;
        opacity: 0.9;
    }

    .nav-menu a:after {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 8px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--primary-color);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--primary-color);
    }

    /* Backdrop overlay */
    .nav-menu.active ~ .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .menu-overlay.active {
        pointer-events: all;
    }

    .hero h1 {
        font-size: 3rem !important;
        letter-spacing: 2px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }

    
    .page-header {
        padding: 100px 0 60px;
        margin-bottom: 40px;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
    }

    .logo img {
        max-height: 55px;
    }

    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Additional styles for inner pages */
.service-details {
    padding: 0 0 60px;
}

.service-overview {
    margin-bottom: 40px;
}

.service-overview h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cta-box {
    background-color: var(--dark-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-box p {
    color: #aaa;
    margin-bottom: 20px;
}

.about-content, .contact-content, .sustainability-content {
    padding-bottom: 60px;
}

/* Contact form styling */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--grey-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

/* Adjust nav positioning */
nav {
    margin-left: auto; /* Push nav to the right side */
}

/* Detailed Services Section */
.services-detailed {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/key-facts-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white-color);
}

.services-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 15px;
}

.services-detailed h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-detailed {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-card-detailed h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 10px;
}

.service-card-detailed h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.service-card-detailed p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.7;
}

.service-card-detailed .btn {
    margin-top: auto;
    align-self: flex-start;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Responsive layout for service cards */
@media (max-width: 992px) {
    .services-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        margin-bottom: 20px;
    }
    
    .services-detailed h2 {
        font-size: 2rem;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.welcome-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.welcome-content h3 {
    font-size: 1.5rem;
    color: var (--dark-color);
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
}

.welcome-content h3:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.welcome-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var (--grey-color);
    margin-bottom: 20px;
}

.welcome-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-content h2 {
        font-size: 2rem;
    }
    
    .welcome-content h3 {
        font-size: 1.3rem;
    }
    
    .welcome-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Welcome Section with Full-height Image */
.welcome-section {
    padding: 0; /* Remove padding to allow full-height image */
    background-color: var(--white-color);
    position: relative;
}

.welcome-grid {
    display: flex;
    flex-direction: row;
    min-height: 600px;
}

.welcome-image {
    position: relative;
    flex: 1;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
}

.welcome-image::after {
    display: none; /* Remove decorative border */
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.welcome-content {
    flex: 1;
    padding: 80px 0 80px 60px;
    text-align: left;
}

.welcome-content .subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.welcome-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-content .separator {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

.welcome-content h3 {
    font-size: 1.3rem;
    color: var(--grey-color);
    margin-bottom: 25px;
    font-weight: 500;
    font-style: italic;
}

.welcome-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var (--grey-color);
    margin-bottom: 20px;
}

.welcome-content .btn {
    margin-top: 20px;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .welcome-grid {
        flex-direction: column;
        min-height: auto;
    }
    
    .welcome-image {
        height: 500px;
        position: relative;
    }
    
    .welcome-image img {
        position: relative;
    }
    
    .welcome-content {
        padding: 60px 15px;
    }
}

@media (max-width: 768px) {
    .welcome-image {
        height: 400px;
    }
}

/* Welcome Section - Professional Split Layout */
.welcome-section {
    position: relative;
    padding: 0;
    background-color: var(--white-color);
    overflow: hidden;
    margin-top: 50px; /* Add space between hero and welcome section */
    margin-bottom: 50px; /* Add space after the welcome section */
}

.welcome-grid {
    display: flex;
    width: 100%;
    min-height: 250px; /* Further reduced from 300px */
}

.welcome-image {
    width: 50%;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.welcome-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Styling - overrides img styling above */
.carousel-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0 !important;
    transition: opacity 0.8s ease-in-out !important;
    z-index: 1 !important;
}

.carousel-image.active {
    opacity: 1 !important;
    z-index: 2 !important;
}

.carousel-container {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    flex: 1;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-debug {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 15;
    font-size: 18px;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    border-color: var(--primary-color);
}

.carousel-image {
    display: none;
    width: 100%;
    height: auto;
}

.carousel-image.active {
    display: block;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: #0077be;
}

.welcome-content-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
}

.welcome-content {
    padding: 30px 40px; /* Reduced padding for more compact layout */
    max-width: 600px;
}

.welcome-content .subtitle {
    font-size: 0.8rem; /* Reduced from 0.9rem */
    margin-bottom: 10px; /* Reduced from 15px */
}

.welcome-content h2 {
    font-size: 1.8rem; /* Reduced from 2.2rem */
    margin-bottom: 15px; /* Reduced from 20px */
}

.welcome-content .separator {
    width: 60px; /* Reduced from 80px */
    height: 2px; /* Reduced from 3px */
    margin-bottom: 15px; /* Reduced from 20px */
}

.welcome-content h3 {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    margin-bottom: 15px; /* Reduced from 25px */
}

.welcome-content p {
    font-size: 0.95rem; /* Reduced from 1.05rem */
    line-height: 1.6; /* Reduced from 1.8 */
    margin-bottom: 15px; /* Reduced from 20px */
}

.welcome-content .btn {
    margin-top: 15px; /* Reduced from 20px */
    font-size: 0.9rem; /* Added smaller font size */
    padding: 8px 20px; /* Reduced padding */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .welcome-grid {
        flex-direction: column;
        min-height: auto;
    }
    
    .welcome-image {
        width: 100%;
        height: 220px; /* Reduced from 280px */
        position: relative;
    }
    
    .welcome-content-wrapper {
        width: 100%;
    }
    
    .welcome-content {
        padding: 40px 25px; /* Reduced padding */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .welcome-image {
        height: 200px; /* Reduced from 250px */
    }
    
    .welcome-content {
        padding: 30px 20px;
    }
    
    .welcome-content h2 {
        font-size: 1.6rem;
    }
}

/* Fuel Products Section */
.fuel-products {
    padding: 80px 0;
    background-color: var(--light-grey);
    position: relative;
}

.fuel-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.fuel-products h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.fuel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fuel-card {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border-bottom: 3px solid transparent;
}

.fuel-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.fuel-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.fuel-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.fuel-card p {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive layout for fuel cards */
@media (max-width: 992px) {
    .fuel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fuel-grid {
        grid-template-columns: 1fr;
    }
    
    .fuel-products h2 {
        font-size: 2rem;
    }
}

/* Terminal Locations Section */
.terminal-locations {
    padding: 80px 0;
    background-color: var(--white-color);
    position: relative;
}

.terminal-locations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var (--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.terminal-locations h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.terminals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.terminal-card {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.terminal-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.terminal-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.terminal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.terminal-card:hover .terminal-image img {
    transform: scale(1.05);
}

.terminal-info {
    padding: 20px;
}

.terminal-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}

.terminal-info p {
    font-size: 0.9rem;
    color: var(--medium-grey);
    line-height: 1.5;
}

/* Image error handling */
.terminal-image.image-error {
    background-color: #f8f8f8;
    position: relative;
}

.terminal-image.image-error::before {
    content: '\f1c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.terminal-image.image-error img {
    opacity: 0.5;
}

/* Responsive layout for terminal cards */
@media (max-width: 1200px) {
    .terminals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .terminals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .terminals-grid {
        grid-template-columns: 1fr;
    }
    
    .terminal-locations h2 {
        font-size: 2rem;
    }
}

/* Key Facts Section */
.key-facts {
    position: relative;
    padding: 100px 0;
    color: var(--white-color);
    background: url('../img/key-facts-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.key-facts .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.key-facts .container {
    position: relative;
    z-index: 2;
}

.key-facts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.key-facts h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.facts-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.facts-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.facts-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stat-description {
    font-size: 0.95rem;
    color: #cccccc;
}

/* Responsive layout for stats */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section - Improved Layout */
.contact-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info p {
    color: var(--medium-grey);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-method-group {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-method-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-method-group h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.contact-method-group h3 i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.contact-method-group p {
    color: var(--grey-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-method-group a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method-group a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Contact CTA Section */
.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c70417 100%);
    color: var(--white-color);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.3);
}

.contact-cta-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.95;
}

.contact-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-cta-content p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: var(--white-color);
}

.contact-cta-content .btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--white-color);
}

.contact-cta-content .btn:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.map-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Contact Layout */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }
    
    .contact-cta-content {
        padding: 35px 25px;
    }
    
    .contact-cta-content h3 {
        font-size: 1.4rem;
    }
    
    .contact-cta-icon {
        font-size: 2.5rem;
    }
    
    .map-section h2 {
        font-size: 2rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white-color);
    position: relative;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.why-choose-us h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Update to Why Choose Us section grid for 5 cards */
.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.choose-us-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    background-color: var(--white-color);
    border-bottom: 3px solid transparent;
}

.choose-us-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.choose-us-card:hover .icon-wrapper {
    background-color: var(--primary-color);
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.choose-us-card:hover .icon-wrapper i {
    color: var(--white-color);
}

.choose-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.choose-us-card p {
    color: var(--medium-grey);
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .choose-us-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-us-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .why-choose-us h2 {
        font-size: 2rem;
    }
}

/* Tabs System for Why Choose Us Section */
.company-tabs-section {
    margin-top: 60px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background-color: var(--light-grey);
    border-bottom: 1px solid #e0e0e0;
}

.tab-item {
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-align: center;
    flex: 1;
}

.tab-item:not(:last-child) {
    border-right: 1px solid #e0e0e0;
}

.tab-item:hover {
    background-color: rgba(227, 6, 19, 0.05);
}

.tab-item.active {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.tab-item.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.tab-section {
    margin-bottom: 40px;
}

.tab-section h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.tab-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-grey);
    margin-bottom: 15px;
}

/* Timeline styling */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    height: 100%;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 60px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    padding-top: 5px;
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--medium-grey);
    font-size: 1rem;
    line-height: 1.6;
}

/* Growth stats styling */
.growth-content {
    text-align: center;
}

.growth-content p {
    font-size: 1.1rem;
    color: var (--medium-grey);
    margin-bottom: 30px;
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.growth-stat {
    padding: 25px 15px;
    background-color: var(--light-grey);
    border-radius: 8px;
    transition: var(--transition);
}

.growth-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--medium-grey);
}

/* Responsive adjustments for tabs */
@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .growth-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tabs-content {
        padding: 20px 15px;
    }
    
    .growth-stats {
        grid-template-columns: 1fr;
    }
}

/* Service Page Layout with Sidebar */
.service-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.service-sidebar {
    background-color: var(--light-grey);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.service-sidebar h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 1.4rem;
}

.service-nav {
    list-style: none;
}

.service-nav li {
    margin-bottom: 5px;
}

.service-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--grey-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.service-nav a:hover {
    background-color: rgba(227, 6, 19, 0.08);
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-nav li.active a {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
}

.service-nav li.active a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--dark-color);
}

.service-content {
    width: 100%;
}

/* Responsive adjustments for sidebar */
@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

/* Service page image styling */
.service-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-container:hover .service-main-image {
    transform: scale(1.02);
}

/* About page hero section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/about-hero-image.jpg') no-repeat center center/cover;
}

.about-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service pages hero sections */
.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/services/service-hero-bg.jpg') no-repeat center center/cover;
}

.pipeline-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/services/pipeline-hero-bg.jpg') no-repeat center center/cover;
}

.leasing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/services/leasing-hero-bg.jpg') no-repeat center center/cover;
}

.storage-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/services/storage-hero-bg.jpg') no-repeat center center/cover;
}

.terminal-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/services/terminal-hero-bg.jpg') no-repeat center center/cover;
}

.transshipment-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/services/transshipment-hero-bg.jpg') no-repeat center center/cover;
}

.service-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.service-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero sections for additional pages */
.sustainability-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/sustainability-hero-bg.jpg') no-repeat center center/cover;
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/contact-hero-bg.jpg') no-repeat center center/cover;
}

/* Add spacing after hero sections */
.hero + section {
    margin-top: 60px; /* Adds space between hero and next section */
}

/* Service page specific spacing */
.service-hero + .service-details {
    margin-top: 60px;
    padding-top: 20px;
}

/* Specific adjustments for content sections */
.service-details {
    padding-top: 20px;
}

.about-content {
    padding-top: 20px;
}

/* Specific adjustment for about page */
.about-content {
    padding-top: 20px;
}

/* Sustainability Page Styling */
.sustainability-content {
    padding: 80px 0;
    background-color: var(--white-color);
}

.sustainability-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sustainability-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.sustainability-intro h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--medium-grey);
    line-height: 1.8;
}

/* Sustainability Tabs */
.sustainability-tabs {
    margin-bottom: 80px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background-color: var(--light-grey);
    border-bottom: 2px solid #e0e0e0;
}

.tab-item {
    flex: 1;
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--light-grey);
    border: none;
    text-align: center;
    color: var(--grey-color);
    font-size: 1rem;
    position: relative;
}

.tab-item i {
    margin-right: 8px;
}

.tab-item:hover {
    background-color: rgba(227, 6, 19, 0.05);
    color: var(--primary-color);
}

.tab-item.active {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.tab-item.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-pane {
    display: none;
    padding: 50px;
    animation: fadeIn 0.5s ease-out;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.tab-pane h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-pane > p {
    color: var(--medium-grey);
    margin-bottom: 40px;
    line-height: 1.8;
}

.tab-pane h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 30px 0 20px;
}

.tab-pane h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.tab-pane p {
    color: var(--medium-grey);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Initiatives Grid */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.initiative-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.initiative-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.initiative-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
}

.initiative-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.initiative-card p {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Environmental Standards */
.environmental-standards {
    margin-top: 40px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.standard-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.standard-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.standard-item h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.standard-item p {
    color: var(--medium-grey);
    font-size: 0.9rem;
}

/* Social Initiatives */
.social-initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.social-card {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(227, 6, 19, 0.02) 100%);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(227, 6, 19, 0.1);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.social-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.social-card p {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Certifications List */
.certifications-list {
    margin: 30px 0;
}

.cert-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.cert-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
}

.cert-content h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.cert-content p {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Governance Section */
.governance-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

/* Sustainability Timeline */
.sustainability-timeline-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.sustainability-timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 15px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    margin-bottom: 80px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    width: calc(50% - 60px);
    margin-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    width: calc(50% - 60px);
    margin-left: 40px;
    text-align: left;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background-color: var(--white-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    background-color: var(--white-color);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    color: var(--medium-grey);
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.timeline-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Sustainability CTA */
.sustainability-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(227, 6, 19, 0.02) 100%);
    border-radius: 8px;
    margin-top: 80px;
}

.sustainability-cta h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.sustainability-cta p {
    font-size: 1.05rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Responsive Sustainability */
@media (max-width: 992px) {
    .tab-item {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .timeline {
        padding: 40px 60px;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 60px;
    }

    .timeline-item .timeline-content {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 30px;
        text-align: left !important;
        padding-left: 80px;
    }

    .timeline-marker {
        position: absolute;
        left: 0;
        top: 0;
        width: 100px;
        height: 100px;
    }

    .timeline-year {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }

    .tab-item {
        border-bottom: 1px solid #e0e0e0;
        padding: 15px;
    }

    .tab-pane {
        padding: 30px 20px;
    }

    .sustainability-intro h2 {
        font-size: 2rem;
    }
    
    .sustainability-timeline-section h2 {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .timeline {
        padding: 20px 40px;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline-marker {
        width: 90px;
        height: 90px;
    }

    .timeline-year {
        font-size: 1.4rem;
    }

    .timeline-content {
        padding: 25px;
        padding-left: 70px;
        margin-top: 30px;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .timeline-content li {
        padding-left: 25px;
        margin-bottom: 10px;
        font-size: 0.95rem;
    }

    .initiatives-grid,
    .standards-grid,
    .social-initiatives {
        grid-template-columns: 1fr;
    }

    .cert-item {
        flex-direction: column;
    }

    .sustainability-cta {
        padding: 40px 20px;
    }
}

.section-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(227,6,19,0.3);
}

.section-card h3 {
    margin-top: 15px;
    font-size: 1.8rem;
    color: var(--dark-color);
    padding-bottom: 0;
    margin-bottom: 20px;
}

.section-divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--grey-color);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.section-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
}

.section-card h4 i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature-item {
    background-color: var(--light-grey);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(227,6,19,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.goals-list {
    list-style: none;
    margin: 25px 0;
}

.goals-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.goals-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.sustainability-report {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/sustainability-report-bg.jpg') no-repeat center center/cover;
    padding: 60px 40px;
    border-radius: 10px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sustainability-report h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.sustainability-report p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.sustainability-report .btn {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.sustainability-report .btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-card {
        padding: 30px 25px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 30px;
    }
    
    .section-card h3 {
        font-size: 1.5rem;
    }
    
    .section-lead {
        font-size: 1.1rem;
    }
}

.h{
    padding-top:80px;
}

/* =====================================================
   BOOTSTRAP-BASED HEADER STYLES
   ===================================================== */

/* Utilities Band */
.wel-t-band {
    background-color: #f5f5f5;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.wel-band-bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wel-t-band p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.wel-t-band span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Logo Wrapper Section */
.logo-wrapper {
    padding: 20px 0;
    align-items: center;
    display: flex;
    width: 100%;
}

.logo-wrapper.row {
    display: flex;
    margin: 0;
}

.logo-wrapper .t-logo {
    display: flex;
    align-items: center;
}

.logo-wrapper .t-logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-wrapper .t-logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

.top-two-right {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.req-button {
    flex-shrink: 0;
}

.req-button .submit {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
    text-transform: capitalize;
}

.req-button .submit:hover {
    background-color: #c70417;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

/* Top Panel Contact Info */
.top-panel {
    flex-grow: 1;
}

.touch_top {
    list-style: none;
    padding: 0;
    margin: 0;
}

.touch_top.touch_top_pad {
    padding-right: 0;
}

.touch_top .nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav.touch_top .item {
    display: list-item;
}

.touch_top .item.item-phone,
.touch_top .item.item-ad {
    display: block;
}

.media {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.media-left {
    flex-shrink: 0;
}

.blue-color {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-color a {
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.blue-color a i {
    color: white;
}

.media-body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

.media-body p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.media-body p a:hover {
    text-decoration: underline;
}

.media-body p span {
    display: block;
    font-size: 0.85rem;
    color: #999;
}

/* Main Navigation - Bootstrap Style */
.main_menu {
    background-color: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.main_menu.menu_fixed {
    position: sticky;
    top: 0;
}

.nav-home-three .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.nav-home-three .row {
    display: flex;
    width: 100%;
    margin: 0;
}

.nav-home-three .col-md-3 {
    flex: 0 0 auto;
    width: auto;
    padding: 15px 20px;
}

.nav-home-three .col-lg-12 {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.nav-menu {
    flex-grow: 1;
    margin-left: 20px;
}

.nav-menu .nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.nav-menu .nav > li {
    position: relative;
    display: block;
}

.nav-menu .nav > li > a {
    display: block;
    padding: 15px 20px;
    color: var(--grey-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: capitalize;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-menu .nav > li > a:hover,
.nav-menu .nav > li > a.active {
    background-color: rgba(227, 6, 19, 0.05);
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.has-t-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-top: 3px solid var(--primary-color);
}

.has-t-submenu:hover .submenu {
    display: block;
}

.has-t-submenu .submenu li {
    list-style: none;
}

.has-t-submenu .submenu a {
    display: block;
    padding: 12px 20px;
    color: var(--grey-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.has-t-submenu .submenu a:hover {
    background-color: rgba(227, 6, 19, 0.08);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Search Form */
.search-form {
    display: flex;
    align-items: center;
}

.nav-search {
    margin-left: auto;
}

.nav-search.pull-right {
    margin-left: auto;
    padding: 15px 20px 15px 0;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.input-group input {
    border: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    width: 150px;
}

.input-group input.form-control {
    border: none !important;
    box-shadow: none !important;
}

.input-group-addon {
    background-color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

.input-group-addon button {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1rem;
    padding: 0;
}

.input-group-addon button:hover {
    color: var(--primary-color);
}

/* Navigation Drawer/Mobile Menu */
.nav-t-header button {
    display: none;
    background: none;
    border: none;
    color: var(--grey-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.nav-menu {
    display: flex;
    flex-grow: 1;
    margin-left: 20px;
}

.nav-menu.active {
    display: flex;
}

.nav-t-holder {
    display: flex;
    width: 100%;
}

.nav-t-footer {
    display: flex;
    flex: 1;
    width: 100%;
}

.mobile-link {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

/* =====================================================
   BOOTSTRAP CAROUSEL STYLES
   ===================================================== */

.carousel.slide.carousel-fade {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel.shop-slider.full_width {
    margin: 0;
    padding: 0;
}

#minimal-bootstrap-carousel {
    background-color: #000;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner .item {
    position: relative;
    display: none;
    width: 100%;
}

.carousel-inner .item.active {
    display: block;
}

.carousel.carousel-fade .item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel.carousel-fade .item.active {
    opacity: 1;
}

.item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.thm-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.content {
    max-width: 700px;
    text-align: left;
    color: white;
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bnrfnt40 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pln_he {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #e0e0e0;
}

.slide_learn_btn {
    display: inline-block;
    margin-right: 15px;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: capitalize;
}

.slide_learn_btn.btn0 {
    background-color: var(--primary-color);
    color: white;
}

.slide_learn_btn.btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.slide_learn_btn.btn0:hover {
    background-color: #c70417;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.slide_learn_btn.btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-control:hover {
    background-color: var(--primary-color);
}

.carousel-control.left {
    left: 20px;
}

.carousel-control.right {
    right: 20px;
}

/* =====================================================
   "WE OFFER DIFFERENT SERVICES" SECTION
   ===================================================== */

.diff-offer-wrapper {
    padding: 80px 0;
    background-color: var(--white-color);
}

.diff-offer {
    margin-bottom: 60px;
}

.diff-offer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.we-offer-cont {
    display: flex;
    align-items: center;
}

.we-offer-cont h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.we-offer-cont h2 span {
    display: block;
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 10px;
}

.we-offer-cont2 p {
    font-size: 1.05rem;
    color: var(--medium-grey);
    margin: 0;
    line-height: 1.8;
}

/* Service Cards */
.service-info {
    margin-bottom: 30px;
}

.service-info .item {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-info .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-info .item:hover .post-image img {
    transform: scale(1.05);
}

.service-info h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0;
    padding: 20px 20px 10px;
    transition: var(--transition);
}

.service-info .item:hover h4 {
    color: var(--primary-color);
}

.service-info p {
    padding: 0 20px;
    margin: 10px 0;
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-info h6 {
    margin: 0;
    padding: 15px 20px 20px;
    display: flex;
    justify-content: flex-start;
}

.service-info h6 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.service-info h6 a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-info h6 a:hover:after {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .diff-offer ul {
        grid-template-columns: 1fr;
    }
    
    .logo-wrapper {
        grid-template-columns: 1fr;
    }
    
    .top-two-right {
        flex-direction: column;
        width: 100%;
    }
    
    .req-button {
        width: 100%;
        text-align: center;
    }
    
    .req-button .submit {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wel-t-band p {
        font-size: 0.8rem;
    }
    
    .logo-wrapper {
        grid-template-columns: 1fr;
        padding: 15px 0;
    }
    
    .logo-wrapper .t-logo img {
        max-height: 60px;
    }
    
    .touch_top .nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-home-three .container {
        flex-direction: column;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        margin-left: 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu .nav {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu .nav > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-t-header button {
        display: block;
    }
    
    .mobile-link {
        display: block;
    }
    
    .nav-search {
        width: 100%;
        padding: 0 20px;
        margin-top: 10px;
    }
    
    .carousel-control {
        display: none;
    }
    
    .item {
        min-height: 400px;
    }
    
    .content h1 {
        font-size: 1.8rem;
    }
    
    .pln_he {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .slide_learn_btn {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .diff-offer ul {
        grid-template-columns: 1fr;
    }
    
    .we-offer-cont h2 {
        font-size: 2rem;
    }
    
    .service-info {
        margin-bottom: 20px;
    }
}
