/* Industry Font Family */
@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-BookItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Demi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-DemiItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-Ultra.otf') format('opentype');
    font-weight: 950;
    font-style: normal;
}

@font-face {
    font-family: 'Industry';
    src: url('fonts/Industryfest-UltraItalic.otf') format('opentype');
    font-weight: 950;
    font-style: italic;
}

/* Color Variables */
:root {
    --primary-blue: #1e3a8a;
    --primary-yellow: #fbbf24;
    --dark-grey: #374151;
    --light-grey: #f3f4f6;
    --medium-grey: #9ca3af;
    --white: #ffffff;
    --text-dark: #1f2937;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* ========================================
   BACKGROUND IMAGES CONFIGURATION
   ======================================== */

/* QUICK START GUIDE:

   1. Add your background images to the 'images' folder
   2. Uncomment the section you want below
   3. Replace the filename with your actual image name
   4. Optionally add an overlay for better text readability

   EXAMPLE - To add background to About section:

   .about-bg {
       background-image: url('images/about-bg.jpg');  // Remove comment marks
       background-size: cover;
       background-position: center;
       background-attachment: fixed;
   }

   Then add overlay by uncommenting in .about::before or .section-overlay-light
*/

/* Hero/Home Section Background */
.hero-intro {
    /* background-image: url('images/hero-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

/* About Section Background */
.about-bg {
    /* background-image: url('images/about-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

/* Services Section Background */
.services-bg {
    /* background-image: url('images/services-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

/* Projects Section Background */
.projects-bg {
    /* background-image: url('images/projects-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

/* Quotation Section Background */
.quotation-bg {
    /* background-image: url('images/quotation-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

/* Contact Section Background */
.contact-bg {
    /* background-image: url('images/contact-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
}

/* Overlay Opacity Settings */
.section-overlay-light {
    /* For light backgrounds - dark text readable */
    /* background: rgba(255, 255, 255, 0.9); */
}

.section-overlay-medium {
    /* For medium contrast */
    /* background: rgba(243, 244, 246, 0.85); */
}

.section-overlay-dark {
    /* For dark backgrounds - light text readable */
    /* background: rgba(0, 0, 0, 0.6); */
}

/* ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Industry', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation - Modern Glassmorphism Design */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.header.scrolled {
    top: 10px;
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    height: 60px;
}

.logo-image {
    position: relative;
    left: -60px;
    width: auto;
    height: 100px;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    position: relative;
    left: -60px;
    font-family: 'Industry', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    opacity: 0;
    text-transform: uppercase;
}

.logo-tagline {
    position: relative;
    left: -60px;
    top: -40px;
    width: max-content;
    font-family: 'Industry', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-top: -8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    background: rgba(243, 244, 246, 0.6);
    padding: 0.6rem 0.8rem;
    border-radius: 50px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-grey);
    font-family: 'Industry', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-blue);
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.quote-btn {
    background: linear-gradient(135deg, var(--primary-yellow), #f59e0b);
    color: var(--primary-blue);
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-family: 'Industry', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.quote-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), #1e40af);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.quote-btn:hover::before {
    opacity: 1;
}

.quote-btn:hover {
    color: var(--white);
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Intro Section - Title Area */
.hero-intro {
    margin-top: 110px;
    padding: 2.5rem 0 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.hero-intro::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
}

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

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

.slide {
    position: absolute;
    top: -92px;
    left: 20px;
    width: 1900px;
    height: 520px;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-grey));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: url('images/End-end-Developement.jpg') center/cover no-repeat;
}

.slide:nth-child(2) {
    background: url('images/Cold-Room-1.jpg') center/cover no-repeat;
}

.slide:nth-child(3) {
    background: url('images/Cold-Room-2.jpg') center/cover no-repeat;
}

.slide:nth-child(4) {
    background: url('images/Cold-Room-3.jpg') center/cover no-repeat;
}

.slide:nth-child(5) {
    background: url('images/Cold-Room-4.jpg') center/cover no-repeat;
}

/* Mobile slide images - will be added in media queries below */

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.slide-title {
    position: relative;
    top: -170px;
    border-radius: 5px;
    font-family: 'Industry', sans-serif;
    background-color: #04193fb2;
    padding: 5px 20px;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -1px;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-description {
    position: relative;
    top: -180px;
    border-radius: 5px;
    font-family: 'Industry', sans-serif;
    background-color: #f8b704b2;
    color: #04193fb2;
    font-size: 1.1rem;
    font-weight: 400;
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

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

/* Slider Navigation Buttons - Positioned on slider section only */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(251, 191, 36, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: var(--primary-yellow);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    width: 40px;
    border-radius: 7px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
}

/* Hero Title and Buttons (in hero-intro section) */
.hero-title {
    font-family: 'Industry', sans-serif;
    font-size: 2.5rem;
    font-weight: 00;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Industry', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Industry', sans-serif;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 160px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), #f59e0b);
    color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, var(--primary-yellow));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    background: rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
}



/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 0rem;
}

.section-title {
    font-family: 'Industry', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), #f59e0b);
    margin: 0 auto 1.2rem;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.section-description {
    font-family: 'Industry', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--medium-grey);
    letter-spacing: 0.3px;
}

/* About Section */
.about {
    background: var(--light-grey);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--dark-grey);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-grey);
}

.feature-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--dark-grey);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-top-color: var(--primary-yellow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-grey);
    line-height: 1.8;
}

/* Projects Section */
.projects {
    background: var(--light-grey);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.projects .container {
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.project-card.featured {
    border: 2px solid var(--primary-yellow);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.project-icon i {
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.project-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.project-location {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-card p {
    color: var(--dark-grey);
    line-height: 1.8;
}

/* Quotation Section */
.quotation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.quotation-form,
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.quotation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px var(--shadow);
    border-left: 4px solid var(--primary-yellow);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--dark-grey);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--light-grey);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--dark-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px var(--shadow);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    min-width: 30px;
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--dark-grey);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--primary-yellow);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

/* Success Messages */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Large screens - optimal sizing */
@media (min-width: 1920px) {
    .hero-intro {
        padding: 5rem 0 4rem;
    }

    .hero-slider {
        height: 650px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .slide-title {
        font-size: 3.5rem;
    }

    .slide-description {
        font-size: 1.5rem;
    }
}

/* Medium screens (laptops, small desktops) */
@media (max-width: 1366px) {
    .slide {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-intro {
        margin-top: 100px;
        padding: 2rem 0 1.8rem;
        min-height: 250px;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

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

    .btn {
        padding: 0.75rem 1.8rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
}

/* iPad / Tablet landscape (769px - 1024px) */
@media (max-width: 1024px) {
    .slide {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-slider {
        height: 420px;
    }

    .hero-intro {
        margin-top: 95px;
        padding: 2.5rem 0 2rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

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

    .about-content,
    .contact-container,
    .quotation-container {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

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

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

/* Tablets and smaller */
@media (max-width: 768px) {
    .header {
        top: 10px;
        width: 95%;
        border-radius: 15px;
    }

    .header.scrolled {
        top: 5px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
        min-height: 70px;
    }

    .logo {
        height: 45px;
    }

    .logo-image {
        position: relative;
        left: 0;
        width: auto;
        height: 45px;
        max-width: 120px;
    }

    .logo h1 {
        position: relative;
        left: 0;
        font-size: 2rem;
    }

    .logo-tagline {
        position: relative;
        left: 0;
        top: 0;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: calc(100% - 40px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 2rem 1rem;
        border-radius: 15px;
        gap: 0.8rem;
        z-index: 999;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 20px;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .quote-btn {
        margin-top: 0.5rem;
    }

    .hero-intro {
        margin-top: 90px;
        padding: 3rem 0 2rem;
    }

    .hero-slider {
        height: 450px;
    }

    .slide {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Mobile-specific slide images for tablets */
    .slide:nth-child(1) {
        background: url('images/mobile/End-end-Developement-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(2) {
        background: url('images/mobile/Cold-Room-1-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(3) {
        background: url('images/mobile/Cold-Room-2-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(4) {
        background: url('images/mobile/Cold-Room-3-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(5) {
        background: url('images/mobile/Cold-Room-4-mobile.jpg') center/cover no-repeat;
    }

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

    .slide-description {
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

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

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

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

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

    .about-content,
    .contact-container,
    .quotation-container {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 35px;
    }

    .logo-image {
        position: relative;
        left: 0;
        width: auto;
        height: 35px;
        max-width: 100px;
    }

    .logo h1 {
        position: relative;
        left: 0;
        font-size: 1.5rem;
    }

    .logo-tagline {
        position: relative;
        left: 0;
        top: 0;
        font-size: 0.65rem;
    }

    .hero-intro {
        margin-top: 80px;
        padding: 2rem 0 1.5rem;
    }

    .hero-slider {
        height: 350px;
    }

    .slide {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Mobile-specific slide images for small phones */
    .slide:nth-child(1) {
        background: url('images/mobile/End-end-Developement-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(2) {
        background: url('images/mobile/Cold-Room-1-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(3) {
        background: url('images/mobile/Cold-Room-2-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(4) {
        background: url('images/mobile/Cold-Room-3-mobile.jpg') center/cover no-repeat;
    }

    .slide:nth-child(5) {
        background: url('images/mobile/Cold-Room-4-mobile.jpg') center/cover no-repeat;
    }

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

    .slide-description {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

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

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

    .quotation-form,
    .contact-form {
        padding: 1.5rem;
    }

    section {
        padding: 2.5rem 0;
    }

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