/* =================================
   Vaishnavi Logistics Website Styles
   ================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

/* Root Variables */
:root {
    --primary-red: #E31E24;
    --primary-green: #2D8B4E;
    --accent-blue: #2E9CD9;
    --dark-text: #333333;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --white: #FFFFFF;
    --footer-bg: #1a1a1a;
    
    /* Gradient Variables */
    --gradient-red-blue: linear-gradient(135deg, #E31E24 0%, #2E9CD9 100%);
    --gradient-green-blue: linear-gradient(135deg, #2D8B4E 0%, #2E9CD9 100%);
    --gradient-red-orange: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    --gradient-blue-purple: linear-gradient(135deg, #2E9CD9 0%, #6B4DE3 100%);
    --gradient-light: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(227, 30, 36, 0.95) 0%, rgba(46, 156, 217, 0.95) 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(to right, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 70px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 500;
    color: var(--dark-text);
    transition: color 0.3s ease;
    padding: 10px 0;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--primary-red);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.80) 0%, rgba(196, 30, 58, 0.70) 50%, rgba(46, 156, 217, 0.80) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-wrapper {
    margin-bottom: 30px;
    display: inline-block;
    text-align: right;
}

.hero h1 {
    font-size: 4.2rem;
    margin: 0;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
    font-size: 2rem;
    font-style: italic;
    opacity: 0.98;
    font-weight: 400;
    margin: 10px 0 0 0;
    text-align: right;
    display: block;
    color: #fffbe7;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 2px rgba(46,156,217,0.10);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.9;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    animation: fadeInUp 1.2s cubic-bezier(.39,.575,.56,1) both;
}


.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: var(--primary-red);
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'emoji', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(.39,.575,.56,1);
    box-shadow: 0 4px 24px rgba(227, 30, 36, 0.18), 0 1.5px 8px rgba(46,156,217,0.10);
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0 0 12px rgba(227,30,36,0.10));
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.13) 0%, rgba(46, 156, 217, 0.13) 100%);
    transition: left 0.5s cubic-bezier(.39,.575,.56,1);
    z-index: 0;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.25), 0 2px 12px rgba(46,156,217,0.13);
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #fff 0%, #ffeaea 100%);
}

.cta-button:active {
    transform: scale(0.98);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.015;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(46, 156, 217, 0.8) 0%, transparent 50%);
    background-size: 600px 600px;
    background-position: -300px 0, calc(100% + 300px) 0;
    pointer-events: none;
    z-index: 0;
}

section > .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-blue) 100%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.about-highlights {
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%),
        linear-gradient(135deg, #e8f5e9 0%, #e0f2f1 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 4px 15px rgba(45, 139, 78, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-highlights::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 139, 78, 0.05) 0%, transparent 100%);
    transition: width 0.5s ease;
}

.about-highlights:hover::after {
    width: 100%;
}

.about-highlights:hover {
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 6px 20px rgba(45, 139, 78, 0.3);
    transform: translateX(5px);
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(135deg, #c8e6c9 0%, #b2dfdb 100%);
}

.about-highlights h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.about-highlights ul {
    list-style: none;
}

.about-highlights li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.about-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(135deg, #fef5f5 0%, #f0f8ff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

/* Top line accent */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(227, 30, 36, 0.6) 0%, rgba(46, 156, 217, 0.6) 100%);
    transition: width 0.5s ease;
    z-index: 1;
}

/* Bottom line - using a span created via JS */
.service-card .card-border-bottom {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--primary-red) 100%);
    transform: translateX(-50%);
    transition: width 0.5s ease 0.1s;
    z-index: 3;
}

/* Left border */
.service-card .card-border-left {
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-red) 0%, var(--accent-blue) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.2s;
    z-index: 2;
}

/* Right border */
.service-card .card-border-right {
    position: absolute;
    right: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-blue) 0%, var(--primary-red) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.3s;
    z-index: 2;
}

/* Service card 2 colors */
.service-card:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(46, 156, 217, 0.5) 0%, rgba(45, 139, 78, 0.5) 100%);
}

.service-card:nth-child(2)::after {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-blue) 100%);
}

.service-card:nth-child(2) .card-border-left {
    background: linear-gradient(to bottom, var(--accent-blue) 0%, var(--primary-green) 100%);
}

.service-card:nth-child(2) .card-border-right {
    background: linear-gradient(to bottom, var(--primary-green) 0%, var(--accent-blue) 100%);
}

/* Service card 3 colors */
.service-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(45, 139, 78, 0.5) 0%, rgba(46, 156, 217, 0.5) 100%);
}

.service-card:nth-child(3)::after {
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--primary-green) 100%);
}

.service-card:nth-child(3) .card-border-left {
    background: linear-gradient(to bottom, var(--primary-green) 0%, var(--accent-blue) 100%);
}

.service-card:nth-child(3) .card-border-right {
    background: linear-gradient(to bottom, var(--accent-blue) 0%, var(--primary-green) 100%);
}

/* Service card 4 colors */
.service-card:nth-child(4)::before {
    background: linear-gradient(90deg, rgba(227, 30, 36, 0.5) 0%, rgba(255, 107, 53, 0.5) 100%);
}

.service-card:nth-child(4)::after {
    background: linear-gradient(90deg, #FF6B35 0%, var(--primary-red) 100%);
}

.service-card:nth-child(4) .card-border-left {
    background: linear-gradient(to bottom, var(--primary-red) 0%, #FF6B35 100%);
}

.service-card:nth-child(4) .card-border-right {
    background: linear-gradient(to bottom, #FF6B35 0%, var(--primary-red) 100%);
}

/* Hover states - expand all borders */
/* Hover states - expand all borders */
.service-card:hover::before,
.service-card:hover .card-border-bottom {
    width: 100%;
}

.service-card:hover .card-border-left,
.service-card:hover .card-border-right {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 15px 40px rgba(227, 30, 36, 0.25);
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%),
        linear-gradient(135deg, #ffebee 0%, #e3f2fd 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Detail Grid - 2 Columns */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Service Detail Page - Industry Card Style */
.service-detail {
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Top line */
.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    transform: translateX(-50%);
    transition: width 0.5s ease;
    z-index: 2;
}

/* Bottom line */
.service-detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--primary-green) 100%);
    transform: translateX(-50%);
    transition: width 0.5s ease 0.1s;
    z-index: 2;
}

/* Left border */
.service-detail .card-border-left {
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-green) 0%, var(--accent-blue) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.2s;
    z-index: 2;
}

/* Right border */
.service-detail .card-border-right {
    position: absolute;
    right: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-blue) 0%, var(--primary-green) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.3s;
    z-index: 2;
}

/* Create overlay element */
.service-detail > * {
    position: relative;
    z-index: 1;
}

/* Hover - expand all borders */
.service-detail:hover::before,
.service-detail:hover::after {
    width: 100%;
}

.service-detail:hover .card-border-left,
.service-detail:hover .card-border-right {
    height: 100%;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 139, 78, 0.3);
    color: var(--white);
    background: linear-gradient(135deg, #2D8B4E 0%, #2E9CD9 100%);
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.service-detail:hover h3 {
    color: var(--white);
}

.service-detail p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-detail:hover p {
    color: var(--white);
}

.service-detail h4 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.service-detail:hover h4 {
    color: var(--white);
}

.service-detail ul {
    list-style: none;
    padding-left: 0;
}

.service-detail li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    transition: color 0.3s ease;
}

.service-detail:hover li {
    color: var(--white);
}

.service-detail li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-detail:hover li::before {
    color: var(--white);
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card {
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Top line */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    transform: translateX(-50%);
    transition: width 0.5s ease;
    z-index: 2;
}

/* Bottom line */
.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--primary-green) 100%);
    transform: translateX(-50%);
    transition: width 0.5s ease 0.1s;
    z-index: 2;
}

/* Left border */
.industry-card .card-border-left {
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-green) 0%, var(--accent-blue) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.2s;
    z-index: 2;
}

/* Right border */
.industry-card .card-border-right {
    position: absolute;
    right: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-blue) 0%, var(--primary-green) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.3s;
    z-index: 2;
}

/* Gradient overlay */
.industry-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D8B4E 0%, #2E9CD9 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

/* Hover - expand all borders */
.industry-card:hover::before,
.industry-card:hover::after {
    width: 100%;
}

.industry-card:hover .card-border-left,
.industry-card:hover .card-border-right {
    height: 100%;
}

.industry-card:hover .card-overlay {
    opacity: 1;
}

.industry-card > * {
    position: relative;
    z-index: 1;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 139, 78, 0.3);
    color: var(--white);
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.industry-card:hover h3 {
    color: var(--white);
}

.industry-card p {
    color: #555;
    line-height: 1.8;
}

.industry-card:hover p {
    color: var(--white);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.feature-item:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #2E9CD9 0%, #6B4DE3 100%);
    box-shadow: 0 5px 20px rgba(46, 156, 217, 0.3);
}

.feature-item:nth-child(2) .feature-icon::before {
    background: linear-gradient(135deg, #2E9CD9 0%, #6B4DE3 100%);
}

.feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #2D8B4E 0%, #4CAF50 100%);
    box-shadow: 0 5px 20px rgba(45, 139, 78, 0.3);
}

.feature-item:nth-child(3) .feature-icon::before {
    background: linear-gradient(135deg, #2D8B4E 0%, #4CAF50 100%);
}

.feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #E31E24 0%, #C2185B 100%);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
}

.feature-item:nth-child(4) .feature-icon::before {
    background: linear-gradient(135deg, #E31E24 0%, #C2185B 100%);
}

.feature-item:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #2E9CD9 0%, #00BCD4 100%);
    box-shadow: 0 5px 20px rgba(46, 156, 217, 0.3);
}

.feature-item:nth-child(5) .feature-icon::before {
    background: linear-gradient(135deg, #2E9CD9 0%, #00BCD4 100%);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-card {
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(135deg, #fef5f5 0%, #fff8e1 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Top line */
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-blue) 100%);
    transform: translateX(-50%);
    transition: width 0.5s ease;
    z-index: 2;
}

/* Bottom line */
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--primary-green) 100%);
    transform: translateX(-50%);
    transition: width 0.5s ease 0.1s;
    z-index: 2;
}

/* Left border */
.contact-info-card .card-border-left {
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-red) 0%, var(--accent-blue) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.2s;
    z-index: 2;
}

/* Right border */
.contact-info-card .card-border-right {
    position: absolute;
    right: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-blue) 0%, var(--primary-green) 100%);
    transform: translateY(-50%);
    transition: height 0.5s ease 0.3s;
    z-index: 2;
}

/* Hover - expand all borders */
.contact-info-card:hover::before,
.contact-info-card:hover::after {
    width: 100%;
}

.contact-info-card:hover .card-border-left,
.contact-info-card:hover .card-border-right {
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 10px 30px rgba(227, 30, 36, 0.2);
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%),
        linear-gradient(135deg, #fff0f0 0%, #fffde7 100%);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.contact-info-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--accent-blue);
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Where We Operate Section */
.coverage-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.coverage-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.coverage-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.region-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.region-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.region-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.region-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.region-item:hover .region-name {
    color: var(--primary-red);
}

/* Map Container */
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(227, 30, 36, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 
        0 20px 50px rgba(227, 30, 36, 0.2),
        0 10px 25px rgba(46, 156, 217, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateY(-5px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.contact-message {
    grid-column: 1 / -1;
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(135deg, #2D8B4E 0%, #26a69a 50%, #2E9CD9 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.3) inset,
        0 5px 25px rgba(45, 139, 78, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.business-info-list {
    list-style: disc;
    text-align: left;
    display: inline-block;
    padding-left: 20px;
    font-size: 1.1rem;
    line-height: 2;
    margin: 0 auto;
}

.business-info-list-wrapper {
    text-align: center;
}

.business-info-list li {
    color: var(--dark-text);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-blue) 50%, var(--primary-green) 100%);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 156, 217, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.gstin {
    margin-top: 15px;
    font-weight: 600;
    color: var(--white);
}

/* Alternate Background Sections */
section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

#about-preview {
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 50%, #e1f5fe 100%);
    position: relative;
}

#about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(227, 30, 36, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(46, 156, 217, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#services {
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 50%, #fce4ec 100%);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

#industries {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 50%, #e1f5fe 100%);
    position: relative;
}

#industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 40%, rgba(45, 139, 78, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(46, 156, 217, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

#why-choose-us {
    background: linear-gradient(135deg, #e8eaf6 0%, #ffffff 50%, #f3e5f5 100%);
    position: relative;
}

#why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(46, 156, 217, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(107, 77, 227, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

#contact-preview {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 50%, #fce4ec 100%);
    position: relative;
}

#contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 50%, rgba(227, 30, 36, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 75% 50%, rgba(45, 139, 78, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Page Header (for non-home pages) */
.page-header {
    background: linear-gradient(270deg, #E31E24, #FF6B35, #2D8B4E, #26a69a, #2E9CD9, #E31E24) !important;
    background-size: 400% 400% !important;
    animation: gradientMove 15s ease infinite !important;
    color: #FFFFFF !important;
    padding: 80px 0 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.page-header > .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.1s cubic-bezier(.39,.575,.56,1) both;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #FFFFFF !important;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 1;
    color: #FFFFFF !important;
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.15);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 15px;
    }

    .logo-container {
        flex: 1;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    nav {
        order: 3;
        width: 100%;
        display: none;
        margin-left: 0;
    }

    nav.active {
        display: block;
        margin-top: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        background-color: var(--white);
        border-radius: 8px;
        overflow: hidden;
    }

    nav li {
        border-bottom: 1px solid var(--medium-gray);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        text-align: left;
    }

    nav a::after {
        display: none;
    }

    .hero {
        padding: 60px 0;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid,
    .industries-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .coverage-regions {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .map-container {
        border-radius: 15px;
        border-width: 2px;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        height: 60px;
        max-width: 250px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .industry-card,
    .contact-info-card,
    .about-highlights,
    .service-detail {
        padding: 25px 20px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid,
    .industries-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .coverage-regions {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .region-item {
        padding: 20px;
    }

    .region-name {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .map-container {
        border-radius: 10px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .menu-toggle,
    .cta-button {
        display: none;
    }

    body {
        color: #000;
    }

    section {
        page-break-inside: avoid;
    }
}
