/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding: 2rem 5%;
    margin-top: 80px; /* To account for fixed navbar */
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
}

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

.company-name {
    font-weight: 700;
    color: #1a3e72;
    font-size: 1.1rem;
}

.tagline {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #e74c3c;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .active {
    color: #e74c3c;
}

.nav-links .active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #1a3e72;
}
/* home page */
/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

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

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 60px 0 40px; /* Extra padding to make it look more balanced */
    text-align: center;
    margin-top: 60px; /* Offset if navbar is fixed */
}

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

header h1 {
    color: #2c3e50;
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    color: #555;
    font-size: 18px;
    margin: 0;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('Images/home_1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect on scroll */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: slideUp 1.2s ease-out;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: slideUp 1.4s ease-out;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: slideUp 1.6s ease-out;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #e74c3c;
    color: #fff;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

/* Animation for scroll-in effect */
@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.why-us h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-item {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.usp-item:hover {
    transform: translateY(-10px);
}

.usp-item i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.usp-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f1f1f1;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.service-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about p {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f1f1f1;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #e74c3c;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

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

    nav ul {
        display: none;
    }
}
/* ===== FOOTER STYLES ===== */
footer {
    background: #1a3e72;
    color: white;
    padding: 3rem 5%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e74c3c;
}

.footer-contact h3,
.footer-links h3,
.footer-services h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after,
.footer-links h3::after,
.footer-services h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e74c3c;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-item i {
    margin-top: 3px;
    color: #e74c3c;
}

.contact-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-services li {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }

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

@media (max-width: 576px) {
    .logo-text {
        display: none;
    }
    
    .navbar {
        padding: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
.nav-links .active {
    color: #e74c3c;
}

.nav-links .active::after {
    width: 100%;
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(26, 62, 114, 0.8), 
                rgba(26, 62, 114, 0.8)), 
                url('../images/steel-factory-hero.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.about-hero .hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

/* About Content */
.about-section {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--accent-red);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.stat-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

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

/* Mission/Vision Section */
.mission-vision {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

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

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-red);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

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

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: white;
}

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

.address-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.address-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.address-card h3 i {
    margin-right: 10px;
    color: var(--accent-red);
}

.address-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid,
    .mv-grid,
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        height: 50vh;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        margin-top: 70px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  /* Header */
  .header {
    background-color: #0b2c4d;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
  .header h1 {
    font-size: 3rem;
  }
  
  .header p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  /* Expertise Section */
  .expertise-section {
    padding: 50px 0;
    background-color: white;
  }
  
  .expertise-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .expertise-item img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .expertise-item .content {
    flex: 1;
  }
  
  .expertise-item h2 {
    font-size: 2rem;
    color: #0b2c4d;
    margin-bottom: 10px;
  }
  
  .expertise-item p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Footer */
  .footer {
    background-color: #0b2c4d;
    color: white;
    text-align: center;
    padding: 20px 10px;
  }
  
/* contact css style*/
/* ===== NAVBAR FIX ===== */
/* Ensures navbar is visible on all pages */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  }
  
  /* Adds padding to body to prevent content hiding behind navbar */
  body {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* ===== ENHANCED CONTACT FORM STYLES ===== */
  #srkContactForm {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(26, 62, 114, 0.1);
  }
  
  #srkContactForm input,
  #srkContactForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border 0.3s;
  }
  
  #srkContactForm input:focus,
  #srkContactForm textarea:focus {
    border-color: #1a3e72;
    outline: none;
    box-shadow: 0 0 5px rgba(26, 62, 114, 0.2);
  }
  
  #srkContactForm textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  #srkContactForm button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    width: 100%;
  }
  
  #srkContactForm button:hover {
    background: #c0392b;
  }
  
  /* Form validation styles */
  #srkContactForm input:required,
  #srkContactForm textarea:required {
    border-left: 3px solid #1a3e72;
  }
  
  #srkContactForm input:invalid:not(:placeholder-shown),
  #srkContactForm textarea:invalid:not(:placeholder-shown) {
    border-left: 3px solid #e74c3c;
  }
  
  /* Success message */
  .form-success {
    display: none;
    color: #2ecc71;
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
  }