/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #1e40af;
    --dark-color: #111827;
    --light-color: #f9fafb;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(220, 38, 38, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(220, 38, 38, 0.3);
    }
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0; /* Removed padding to let the logo determine height */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(230, 230, 230, 0.5);
    transition: var(--transition);
    
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    height: auto; /* Let the content determine the height */
}

.logo {
    display: flex;
    align-items: center;
    min-width: 200px;
    height: 100%;
    padding: 2px 0; /* Add minimal padding to ensure logo doesn't touch edges */
    justify-content: center; /* Center the logo in its container */
}

/* Active state for navigation */
.nav-list a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-list a.active::before {
    width: calc(100% - 28px);
    opacity: 1;
}

.logo-img {
    height: 90px; /* Maintain the reduced height for navbar */
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    transform-origin: left center;
    margin-right: 25px;
    object-fit: cover; /* Changed from contain to cover for better filling */
    vertical-align: middle;
    /* Add zoom effect to make logo more prominent */
    transform: scale(1.1); /* Slightly zoom in by default */
    max-width: 100%; /* Ensure it doesn't overflow */
}

.logo-img:hover {
    transform: scale(1.15); /* Slightly more zoom on hover from the already zoomed state */
    filter: brightness(1.05); /* Add subtle brightness increase on hover */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 14px; /* Reduced padding from 12px 18px */
    border-radius: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin-top: 5px;
    border: 1px solid rgba(230, 230, 230, 0.8);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.dropdown-item:hover {
    background: rgba(220, 38, 38, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item::before {
    display: none;
}

/* Mobile Dropdown Styles */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        background: rgba(245, 245, 245, 0.5);
        box-shadow: none;
        border-radius: 0;
        opacity: 0;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        padding: 0;
        margin: 0;
        border: none;
        border-left: 2px solid var(--primary-color);
        margin-left: 20px;
        width: 100%;
    }
    
    .dropdown-toggle.active i {
        transform: rotate(180deg);
    }
    
    .dropdown.show .dropdown-menu {
        max-height: 500px !important;
        opacity: 1 !important;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        display: block;
        width: 100%;
        color: var(--text-color);
        font-size: 16px;
        background: rgba(245, 245, 245, 0.5);
        margin: 2px 0;
    }
    
    .mobile-nav-open .dropdown-menu {
        display: block;
        max-height: none;
        opacity: 1;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
    }
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-list a:hover {
    color: var(--primary-color);
    background: rgba(220, 38, 38, 0.03);
    transform: translateY(-2px);
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0.7;
}

.nav-list a:hover::before {
    width: calc(100% - 28px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    min-height: 600px; /* Ensure minimum height on small devices */
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: scale 20s ease-in-out infinite alternate;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20,20,20,0.85) 0%, rgba(255, 103, 47, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

/* Hero Logo Styles */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeInDown 1s ease 0.2s forwards;
}

.hero-logo-img {
    height: 210px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(220, 38, 38, 0.4));
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 50px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

/* Enhanced Tagline Styles */
.tagline-container {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.tagline-main {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.tagline-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255, 255, 255, 0.8) 100%);
    margin: 20px auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.tagline-services {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    letter-spacing: 0.3px;
    font-style: italic;
}

@media (max-width: 768px) {
    .tagline-main {
        font-size: 1.4rem;
    }
    
    .tagline-services {
        font-size: 1.1rem;
    }
    
    .tagline-divider {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .tagline-main {
        font-size: 1.2rem;
    }
    
    .tagline-services {
        font-size: 1rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dc2626;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(230, 230, 230, 0.5);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Image overlay for hover effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* Read More Overlay */
.service-card {
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: 'Read More';
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(240, 82, 82, 0.9));
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(220, 38, 38, 0.3);
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(220, 38, 38, 0.5);
    animation: pulse 2s infinite;
}

.service-card h3 {
    padding: 25px 25px 10px;
    color: var(--dark-color);
    font-size: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
}

.service-card:hover h3::after {
    width: 80px;
    opacity: 1;
}

.service-card p {
    padding: 15px 25px 25px;
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover p {
    color: #444;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

/* About Section */



/* About Section */
.about {
    padding: 100px 0;
    background-image: url('../images/Main Section/15.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: soft-light;
    background-color: #f8f9fada;
    opacity: 0.9;
    position: relative;
}

@media (max-width: 991px) {
  .about {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .about {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    min-height: 350px;
    opacity: 1;
  }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.05) 0%, rgba(249, 250, 251, 0) 100%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-tagline {
    margin-bottom: 25px;
}

.about-tagline h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.about-description {
    margin-bottom: 40px;
    position: relative;
    padding: 30px 35px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.about-description::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.05);
    z-index: 0;
}

.about-description::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(220, 38, 38, 0.1);
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.about-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-description p {
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
    font-weight: 400;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.about-description p strong,
.about-description p .highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Term highlight style for important terms within paragraphs */
.term-highlight {
    background: linear-gradient(135deg, #c22026 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.about-cta {
    margin-top: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.5;
}

.stat-label {
    margin-top: 15px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature h4 {
    color: #dc2626;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ef4444 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.contact-info-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
    gap: 30px;
}

.contact-summary-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-summary-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-summary-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-summary-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-summary-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-summary-item a:hover {
    color: var(--primary-color);
}

.contact-cta {
    margin-top: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 230, 230, 0.5);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background-color: white;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #ccc;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Page Banner */
.page-banner {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Main Section/red color Petrochemical engineering works .jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #5b5f65;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 350px;
    width: auto;
    transition: var(--transition);
    margin-bottom: 15px;
    margin-left: -50px; 
}

.footer-links h4, 
.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.footer-links h4::after, 
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact strong {
    color: white;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    visibility: visible;
    opacity: 1;
    background: rgba(220, 38, 38, 0.1);
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1050;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    margin-left: auto;
    order: 3;
}

.mobile-menu-btn:hover {
    background: rgba(220, 38, 38, 0.05);
}

.mobile-menu-btn i {
    font-size: 1.2rem;
}

.nav {
    transition: all 0.3s ease;
}

.mobile-nav-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    animation: slideInRight 0.3s ease forwards;
    z-index: 1000;
}

.mobile-nav-open .nav-list {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.mobile-nav-open .nav-list li {
    width: 100%;
}

.mobile-nav-open .nav-list a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(230, 230, 230, 0.5);
    display: block;
}

.mobile-nav-open .nav-list a::before {
    left: 15px;
    bottom: 12px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(220, 38, 38, 0.1);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.2s ease forwards;
    visibility: visible;
    opacity: 1;
}

.mobile-menu-close:hover {
    background: rgba(220, 38, 38, 0.05);
    color: var(--primary-color);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .nav-list {
        display: none;
    }
    
    .hero {
        height: 100vh;
        min-height: 550px;
    }
    
    .hero-logo-img {
        height: 140px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
        margin-bottom: 10px;
    }
    
    .mobile-menu-btn {
        display: flex !important; /* Always show on mobile */
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(220, 38, 38, 0.1);
        visibility: visible;
        opacity: 1;
        transition: all 0.3s ease;
    }
    
    /* When menu is open, ensure hamburger is hidden */
    .mobile-nav-open ~ .mobile-menu-btn,
    .mobile-nav-open + .mobile-menu-btn,
    body:has(.mobile-nav-open) .mobile-menu-btn {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .hero-logo-img {
        height: 100px;
        max-width: 280px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        gap: 30px;
        justify-content: flex-start;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-logo-img {
        height: 100px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .hero-text h1::after {
        width: 50px;
        height: 3px;
        bottom: -5px;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-link {
        margin-bottom: 20px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .footer-content {
        gap: 20px;
    }
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-floating {
    display: flex;
    align-items: center;
    padding: 0 20px 0 0;
    height: 50px;
    border-radius: 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    transition: var(--transition);
    overflow: hidden;
}

.btn-floating i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    margin-right: 10px;
}

.btn-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.cta-text {
    font-weight: 500;
    letter-spacing: 1px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.service-card,
.about-image img,
.contact-form {
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 900px;
    position: relative;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    transform: rotate(90deg);
}

#modal-title {
    margin-top: 10px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

#modal-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

#modal-content {
    color: var(--dark-color);
    line-height: 1.7;
}

#modal-content h3 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

#modal-content p {
    margin-bottom: 20px;
}

#modal-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

#modal-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
    
    #modal-title {
        font-size: 1.8rem;
    }
}

/* Careers Section Styles */
.careers {
    padding: 100px 0;
    background-color: #f9fafb;
    position: relative;
}

.careers::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(249, 250, 251, 0) 0%, rgba(220, 38, 38, 0.05) 100%);
    z-index: 0;
}

.careers-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.careers-text {
    flex: 1;
    padding-right: 20px;
}

.careers-text h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.careers-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.careers-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.careers-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.careers-feature {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.careers-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.careers-feature h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.careers-feature p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}

.careers-image {
    flex: 1;
    position: relative;
}

.careers-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
}

.careers-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ef4444 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

.team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.careers-image:hover .team-img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .careers-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .careers-text {
        padding-right: 0;
    }
    
    .team-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .careers-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .careers-text h2 {
        font-size: 1.8rem;
    }
    
    .careers-text h3 {
        font-size: 1.5rem;
    }
}

/* Certification Section Styles */
.certification {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.certification::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, rgba(220, 38, 38, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.certification::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, rgba(220, 38, 38, 0) 70%);
    bottom: -200px;
    left: -200px;
    z-index: 0;
}

.section-description {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
}

.certification-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.certification-item {
    /* width: 200px; */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.certification-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ef4444 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.certification-item:hover::after {
    transform: scaleX(1);
}

.certification-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.certification-item:hover img {
    transform: scale(1.05);
}

/* Media queries for certification grid */
@media (max-width: 768px) {
    .certification-grid {
        gap: 20px;
    }
    
    .certification-item {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 576px) {
    .certification-grid {
        gap: 15px;
    }
    
    .certification-item {
        width: 140px;
        height: 140px;
        padding: 10px;
    }
}

.certification-card {
    background-color: transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    transform: translateY(0);
    position: relative;
    border: none;
    box-shadow: none;
}

.certification-card:hover {
    transform: translateY(-5px);
}

.certification-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.certification-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    transition: transform 0.6s ease;
}

.certification-card:hover .certification-image img {
    transform: scale(1.05);
}


/* Animation keyframes for certifications */

/* Animation keyframes for certifications */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes certificatePulse {
    0% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 30px 60px -15px rgba(220, 38, 38, 0.15);
    }
    100% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 991px) {
    .showcase-track {
        height: 400px;
    }
    
    .certification-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .showcase-track {
        height: 380px;
    }
    
    .certification-image {
        height: 220px;
        padding: 20px;
    }
    

    
    .nav-button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .showcase-track {
        height: 340px;
    }
    
    .certification-image {
        height: 180px;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .showcase-navigation {
        margin-top: 30px;
    }
}

/* Goals Section Styles */
.goals {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.05) 0%, rgba(249, 250, 251, 0) 100%);
    z-index: 0;
}

.goals-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.goals-text {
    flex: 3;
    position: relative;
    z-index: 1;
}

.goals-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
}

.goals-text p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.vision, .mission {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
}

.vision h3, .mission h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.vision h3::after, .mission h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.commitments {
    margin-top: 40px;
}

.commitment {
    margin-bottom: 25px;
}

.commitment h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.goals-image {
    flex: 2;
    position: relative;
}

.goals-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.2;
}

.goals-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ef4444 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

.goals-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.goals-image:hover .goals-img {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .goals-content {
        flex-direction: column;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .goals-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        order: 2;
        margin-top: 30px;
    }
    
    .about-image {
        order: 1;
    }
}

/* Clients Section Styles */
.clients {
    padding: 80px 0 100px; /* Increased bottom padding to accommodate pagination */
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.clients .section-title {
    margin-bottom: 15px;
}

.clients .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #6c757d;
}

.clients-swiper {
    padding: 20px 70px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    padding: 10px;
    height: 120px;
}

.swiper-slide img {
    max-width: 90%;
    height: auto;
    max-height: 75px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: all 0.3s ease;
}

.swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.swiper-pagination {
    position: relative;
    margin-top: 50px; /* Increased from 30px to 50px */
    bottom: 0;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 0.5;
    margin: 0 6px; /* Added margin between dots */
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2); /* Slightly enlarge active bullet */
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    position: absolute;
    overflow: hidden;
    transform: translateY(-50%);
    outline: none;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    z-index: 5;
}

.swiper-button-next:before,
.swiper-button-prev:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: white;
    box-shadow: 0 12px 25px rgba(220, 38, 38, 0.25);
    transform: translateY(-50%) translateY(-2px);
}

.swiper-button-next:hover:before,
.swiper-button-prev:hover:before {
    transform: scale(1);
}

/* Style for dynamic bullets */
.swiper-pagination-bullet-active-main {
    transform: scale(1.2);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -40px;
}

/* Navigation button positioning */
.clients-swiper .swiper-button-next {
    right: 10px;
    z-index: 10;
    top: calc(50% - 10px);
}

.clients-swiper .swiper-button-prev {
    left: 10px;
    z-index: 10;
    top: calc(50% - 10px);
}

@media (max-width: 768px) {
    .clients-swiper {
        padding: 20px 50px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .clients-swiper .swiper-button-next {
        right: 5px;
    }
    
    .clients-swiper .swiper-button-prev {
        left: 5px;
    }
    
    .swiper-pagination {
        margin-top: 35px;
    }
    
    .swiper-slide {
        height: 100px;
    }
    
    .swiper-slide img {
        max-height: 60px;
    }
}
        /* Styles for goals link section */
        .goals-link {
            background-color: #f9f9f9;
            padding: 80px 0;
            text-align: center;
        }
        
        .goals-link h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        .goals-link p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            margin-top: 30px;
        }

        /* Hero section custom font */
        .hero-text h1 {
            font-family: 'Prachason Neue', sans-serif;
            font-weight: bold;
        }

        /* Enhanced Modern About Section Styles */
        .about-content {
            display: block;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .about-text {
            width: 100%;
            position: relative;
        }

        /* Enhanced About Header */
        .about-text h2 {
            font-size: 3.2rem;
            background: linear-gradient(135deg, #c22026 0%, #dc2626 50%, #ef4444 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
            position: relative;
            animation: fadeInDown 1s ease 0.2s both;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #c22026, #ef4444);
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(194, 32, 38, 0.3);
        }

        /* Enhanced About Tagline */
        .about-tagline {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .about-tagline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(194, 32, 38, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .about-tagline:hover::before {
            left: 100%;
        }

        .about-tagline h3 {
            font-size: 2.2rem;
            background: linear-gradient(135deg, #c22026 0%, #1e40af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .about-subtitle {
            font-size: 1.4rem;
            color: #64748b;
            font-weight: 500;
            margin-bottom: 0;
            font-style: italic;
        }

        /* Enhanced About Description */
        .about-description {
            margin-bottom: 35px;
            text-align: center;
            animation: fadeInUp 1s ease 0.6s both;
            padding: 20px 15px;
            border-radius: 8px;
        }

        .about-description p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #475569;
            max-width: 800px;
            margin: 0 auto 20px;
            font-weight: 400;
            text-align: center;
        }

        /* Enhanced Company Divisions */
        .company-divisions {
            margin: 60px 0;
            display: grid;
            gap: 30px;
        }

        .division {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
            backdrop-filter: blur(20px);
            padding: 35px;
            border-radius: 24px;
            margin-bottom: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 1s ease calc(0.8s + var(--stagger, 0s)) both;
        }

        .division::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #c22026 0%, #ef4444 50%, #f97316 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        .division:hover::before {
            transform: scaleX(1);
        }

        .division:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(194, 32, 38, 0.1);
        }

        .division h4 {
            color: #1e293b;
            margin-bottom: 15px;
            font-size: 1.6rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }

        .division h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #c22026, #ef4444);
            border-radius: 2px;
        }

        .division p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Enhanced Services List */
        .services-list {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .services-list li {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 12px 20px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(194, 32, 38, 0.1);
            position: relative;
            overflow: hidden;
            color: #475569;
        }
        
        .services-list li a {
            color: inherit;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .services-list li:hover {
            background: linear-gradient(135deg, #c22026 0%, #ef4444 100%);
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(194, 32, 38, 0.3);
            border-color: transparent;
        }

        .services-list li i {
            color: #c22026;
            margin-right: 10px;
            font-size: 1rem;
            transition: color 0.4s ease;
        }

        .services-list li:hover i {
            color: white;
        }

        /* Enhanced Specialization Section */
        .specialization {
            margin: 60px 0;
            animation: fadeInUp 1s ease 1.2s both;
        }

        .specialization h4 {
            color: #1e293b;
            margin-bottom: 25px;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .specialization h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #c22026, #ef4444);
            border-radius: 2px;
        }

        .specialization > p {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        /* Enhanced Sectors Grid */
        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .sector-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
            backdrop-filter: blur(15px);
            padding: 25px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease calc(1.4s + var(--item-delay, 0s)) both;
            color: #475569;
        }

        .sector-item:hover {
            background: linear-gradient(135deg, #c22026 0%, #ef4444 100%);
            color: white;
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(194, 32, 38, 0.2);
        }

        .sector-item i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #c22026;
            transition: color 0.4s ease;
            min-width: 24px;
        }

        .sector-item:hover i {
            color: white;
        }

        .sector-item span {
            font-weight: 500;
            font-size: 1rem;
        }

        /* Enhanced About Conclusion */
        .about-conclusion {
            margin: 60px 0 40px;
            padding: 40px;
            background: linear-gradient(135deg, rgba(194, 32, 38, 0.05) 0%, rgba(239, 68, 68, 0.03) 100%);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(194, 32, 38, 0.1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 1.6s both;
        }

        .about-conclusion::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #c22026 0%, #ef4444 50%, #f97316 100%);
        }

        .about-conclusion p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 20px;
            text-align: center;
        }

        .highlight-text {
            font-size: 1.3rem;
            background: linear-gradient(135deg, #c22026 0%, #ef4444 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-top: 25px;
            border: none;
            padding: 25px;
            text-align: center;
            position: relative;
            font-style: italic;
        }

        .highlight-text::before {
            content: '"';
            font-size: 3rem;
            position: absolute;
            left: 0;
            top: -10px;
            color: rgba(194, 32, 38, 0.2);
            font-family: serif;
        }

        .highlight-text::after {
            content: '"';
            font-size: 3rem;
            position: absolute;
            right: 0;
            bottom: -20px;
            color: rgba(194, 32, 38, 0.2);
            font-family: serif;
        }

        /* Enhanced CTA Section */
        .about-cta {
            margin-top: 50px;
            text-align: center;
            animation: fadeInUp 1s ease 1.8s both;
        }

        /* Animation Keyframes */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger Animation Variables */
        .division:nth-child(1) { --stagger: 0s; }
        .division:nth-child(2) { --stagger: 0.2s; }

        .sector-item:nth-child(1) { --item-delay: 0s; }
        .sector-item:nth-child(2) { --item-delay: 0.1s; }
        .sector-item:nth-child(3) { --item-delay: 0.2s; }
        .sector-item:nth-child(4) { --item-delay: 0.3s; }
        .sector-item:nth-child(5) { --item-delay: 0.4s; }
        .sector-item:nth-child(6) { --item-delay: 0.5s; }
        .sector-item:nth-child(7) { --item-delay: 0.6s; }

        /* Enhanced Responsive Design */
        @media (max-width: 768px) {
            .about-text h2 {
                font-size: 2.5rem;
            }

            .about-tagline {
                padding: 25px 20px;
            }

            .about-tagline h3 {
                font-size: 1.8rem;
            }

            .about-subtitle {
                font-size: 1.2rem;
            }

            .division {
                padding: 25px 20px;
            }

            .sectors-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .about-conclusion {
                padding: 30px 20px;
            }

            .highlight-text {
                font-size: 1.1rem;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .about-text h2 {
                font-size: 2rem;
            }

            .about-tagline h3 {
                font-size: 1.5rem;
            }

            .services-list li {
                padding: 10px 16px;
                font-size: 0.9rem;
            }

            .sector-item {
                padding: 20px;
            }
        }