*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

.container{
width:90%;
max-width:1200px;
margin:0 auto;
padding-left:20px;
padding-right:20px;
}
/* TOP BAR */
.top-bar{
  background:#c32026;
  color:#fff;   /* 🔥 change to white for better contrast */
  padding:8px 0;
  font-size:14px;
}

.top-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.top-contact{
  display:flex;
  gap:25px;
}

/* NEW */
.top-item{
  display:flex;
  align-items:center;
  gap:8px;
}

/* ICON STYLE */
.top-item i{
  font-size:14px;
  color:#fff;  /* 🔥 icon white */
}
/* NAVBAR */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 0;   /* reduced height */
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 280px;   /* perfect size */
  width: 180PX;
  display: block;
}

/* ===== NAVBAR ===== */
.navbar{
  background:#ffffff;
  position:relative;
  z-index:9999;
  padding:15px 0;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
}

.logo img{
  height:60px;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  color:#000;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:0.3s ease;
}

/* Hover Color */
.nav-links a:hover{
  color:#c32026;
}

/* Underline Animation */
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#c32026;
  transition:0.3s ease;
}

.nav-links a:hover::after{
  width:100%;
}

/* MOBILE MENU ICON */
.menu-toggle{
  display:none;
  font-size:26px;
  color:white;
  background:#0f2f4d;
  padding:8px 12px;
  border-radius:6px;
  cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px){

  .nav-links{
    position:absolute;
    top:80px;
    right:0;
    background:#0f2f4d;
    flex-direction:column;
    width:220px;
    padding:20px;
    gap:20px;
    display:none;
    border-radius:10px;
  }

  .nav-links a{
    color:#fff;
  }

  .nav-links.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }
}

/* HERO */
.hero{
position:relative;
height:92vh;
background:url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover no-repeat;
display:flex;
align-items:center;
color:#fff;
overflow:hidden;
padding-left:80px;   /* Important for left alignment */
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(90deg, rgba(12,39,66,0.95) 0%, rgba(12,39,66,0.88) 60%, rgba(12,39,66,0.75) 100%);
}

.hero-content{
position:relative;
max-width:800px;
text-align:left;
animation:fadeUp 1.2s ease;
}

/* Tag */
.tag{
background:#d62828;
padding:8px 18px;
font-size:13px;
font-weight:500;
display:inline-block;
margin-bottom:25px;
letter-spacing:0.5px;
}

/* Heading */
.hero h1{
font-size:60px;
font-weight:700;
line-height:1.15;
margin-bottom:25px;
}

/* Subtext */
.hero p{
font-size:18px;
opacity:0.9;
margin-bottom:35px;
}

/* Buttons */
.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
padding:12px 25px;
text-decoration:none;
font-weight:500;
border-radius:4px;
transition:0.3s;
}

.btn.red{background:#c32026;color:#fff;}
.btn.green{background:#25D366;color:#fff;}
.btn.light{background:#fff;color:#000;}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}
@media(max-width:768px){
.hero{
padding-left:25px;
height:auto;
padding-top:100px;
padding-bottom:100px;
}

.hero h1{
font-size:34px;
}
}



/* ABOUT SECTION */
.about-section{
padding:100px 0;
background:#f5f7fa;
}

.about-container{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.about-image{
flex:1;
position:relative;
z-index:1;
}

/* RED BACK FRAME */
.about-image::before{
content:"";
position:absolute;
top:-20px;
left:-20px;
width:100%;
height:100%;
border:4px solid #d62828;
z-index:-1;
}

/* Image Styling */
.about-image img{
width:100%;
display:block;
border-radius:4px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}
@media(max-width:992px){
.about-image::before{
top:-12px;
left:-12px;
}
}

/* CONTENT */
.about-content{
flex:1;
animation:fadeUp 1.2s ease;
}

.about-tag{
background:#ffe5e5;
color:#c32026;
padding:6px 14px;
font-size:13px;
font-weight:600;
display:inline-block;
margin-bottom:20px;
}

.about-content h2{
font-size:36px;
color:#0f2f4d;
margin-bottom:20px;
}

.about-content p{
color:#555;
margin-bottom:18px;
line-height:1.7;
}

/* FEATURES */
.about-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:30px;
}

.feature-box{
display:flex;
gap:15px;
align-items:flex-start;
}

.feature-box i{
font-size:22px;
color:#c32026;
margin-top:5px;
}

.feature-box h4{
font-size:16px;
margin-bottom:5px;
color:#0f2f4d;
}

.feature-box p{
font-size:14px;
color:#666;
}

/* MOBILE */
@media(max-width:992px){
.about-container{
flex-direction:column;
}

.about-features{
grid-template-columns:1fr;
}
}


.services-section {
    padding: 80px 0;
    background: #f5f6f8;
}

.services-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.services-heading {
    text-align: center;
    margin-bottom: 50px;
}

.services-badge {
    background: #f3dede;
    color: #c41e1e;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.services-heading h2 {
    font-size: 36px;
    margin: 15px 0;
    color: #0e2b4c;
}

.services-heading p {
    color: #666;
    font-size: 16px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}

.services-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    color: #fff;
}

.theme-red .services-card-header {
    background: #b51c1c;
}

.theme-navy .services-card-header {
    background: #0e2b4c;
}

.services-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.services-card:hover .services-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.services-icon-box i {
    font-size: 20px;
    color: #fff;
}

.services-list {
    padding: 25px;
    list-style: none;
}

.services-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
    color: #444;
    font-size: 15px;
}

.services-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #c41e1e;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}
:root {
    --choose-bg-dark: #0a223d;
    --choose-accent-red: #b91d24;
    --choose-card-bg: rgba(255, 255, 255, 0.05);
    --choose-text-white: #ffffff;
    --choose-text-gray: #b0bec5;
}

/* Section */
.choose-section {
    padding: 80px 20px;
    background-color: var(--choose-bg-dark);
    color: var(--choose-text-white);
    text-align: center;
}

.choose-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.choose-header {
    margin-bottom: 60px;
}

.choose-badge {
    background-color: var(--choose-accent-red);
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
}

.choose-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.choose-header p {
    color: var(--choose-text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.choose-card {
    background-color: var(--choose-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s ease;
    animation: chooseFadeUp 0.8s ease forwards;
    opacity: 0;
}

.choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--choose-accent-red);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Icon */
.choose-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 22px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

/* 🔥 Icon background turns RED on hover */
.choose-card:hover .choose-icon {
    background-color: var(--choose-accent-red);
    color: #fff;
}

/* Text */
.choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.choose-card p {
    color: var(--choose-text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Animation */
@keyframes chooseFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation */
.choose-card:nth-child(1) { animation-delay: 0.1s; }
.choose-card:nth-child(2) { animation-delay: 0.2s; }
.choose-card:nth-child(3) { animation-delay: 0.3s; }
.choose-card:nth-child(4) { animation-delay: 0.4s; }
.choose-card:nth-child(5) { animation-delay: 0.5s; }
.choose-card:nth-child(6) { animation-delay: 0.6s; }


/* ==== INDUSTRIES WE SERVE ======= */

/* Industries Section Styling */
.industries-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* Light background */
    text-align: center;
}

.section-header-light .badge-light {
    background-color: #f2e1e2;
    color: #b91d24;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header-light h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-header-light p {
    color: #666;
    margin-bottom: 50px;
}

/* 5-Column Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* Industry Card Base Style */
.industry-card {
    background: #ebf2f7; /* Very light blue/grey */
    padding: 40px 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
}

.industry-icon {
    font-size: 30px;
    color: #b91d24;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 29, 36, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.industry-card h3 {
    font-size: 1.1rem;
    color: #1a2b3c;
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

/* Hover Effect: Turns the card red like the image */
.industry-card:hover {
    background-color: #b91d24;
    transform: translateY(-5px);
}

.industry-card:hover h3,
.industry-card:hover p {
    color: #ffffff;
}

.industry-card:hover .industry-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: transparent;
}

/* Responsive adjustment for tablets/mobile */
@media (max-width: 1024px) {
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .industries-grid { grid-template-columns: 1fr; }
}


:root {
    --primary-blue: #0B2A4A;
    --light-bg: #F4F6F8;
    --text-gray: #6E7074;
}

/* Section */
.project-gallery {
    padding: 100px 20px;
    background: var(--light-bg);
}

/* Container */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-badge {
    display: inline-block;
    background: #ffe5e5;
    color: #c41e1e;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.gallery-header h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.gallery-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.project-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Image */
.project-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Blue Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 42, 74, 0.9),
        rgba(11, 42, 74, 0.6),
        transparent
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.overlay i {
    color: #fff;
    font-size: 28px;
    background: var(--primary-blue);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0.8);
    transition: 0.3s ease;
}

.project-card:hover .overlay {
    opacity: 1;
}

.project-card:hover .overlay i {
    transform: scale(1);
}

/* Info */
.project-info {
    padding: 20px;
}

.category {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.project-info h3 {
    font-size: 20px;
    color: var(--primary-blue);
}
/* Global Fix */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-navy: #0a223d;
  --accent-red: #b91d24;
  --form-bg: #f4f7f9;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 100px 0;
  background-color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ================= HEADER ================= */

.contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.contact-badge {
  background: #fdf2f2;
  color: var(--accent-red);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 4px;
}

.contact-header h2 {
  font-size: 38px;
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-header p {
  color: #666;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================= GRID ================= */

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}

/* ================= INFO SIDE ================= */

.info-card {
  display: flex;
  gap: 20px;
  background: #f8f9fa;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
}

.icon-box {
  background: var(--accent-red);
  color: #fff;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

.info-content h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--primary-navy);
}

.info-content a,
.info-content p {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.info-content a:hover {
  color: var(--accent-red);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* ================= FORM ================= */

.contact-form {
  background: var(--form-bg);
  padding: 50px;
  border-radius: 10px;
}

/* IMPORTANT FIX */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--primary-navy);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; /* VERY IMPORTANT */
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-red);
}

textarea {
  resize: none;
}

/* Submit Button */
.submit-btn {
  background: var(--accent-red);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #99171c;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-form {
    padding: 30px;
  }

  .form-row {
    flex-direction: column;
  }
}


/* ======= SERVICES PAGE ======= */
/* ================= SERVICE BANNER SECTION ================= */

.service-banner-section {
    background: linear-gradient(rgba(10, 34, 61, 0.85), rgba(10, 34, 61, 0.85)),
                url('image/images.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 450px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

/* Content Wrapper */
.service-banner-content {
    max-width: 900px;
    width: 100%;
}

/* Heading */
.service-banner-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Paragraph */
.service-banner-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Buttons Wrapper */
.service-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Primary Button */
.primary-cta-btn {
    background-color: #ff6a28;
    color: #ffffff;
    padding: 15px 38px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.primary-cta-btn:hover {
    background-color: #e65c1f;
    transform: translateY(-3px);
}

/* Secondary Button */
.secondary-cta-btn {
    background-color: #ffffff;
    color: #0a223d;
    padding: 15px 38px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.secondary-cta-btn:hover {
    background-color: #f2f2f2;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .service-banner-content h1 {
        font-size: 2.2rem;
    }

    .service-banner-content p {
        font-size: 1rem;
    }

    .service-banner-buttons {
        flex-direction: column;
    }

    .primary-cta-btn,
    .secondary-cta-btn {
        width: 220px;
        text-align: center;
    }
}

/* ================= APPLICATIONS SECTION ================= */

.applications-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

/* Wrapper */
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.applications-header {
    text-align: center;
    margin-bottom: 50px;
}

.applications-header h2 {
    font-size: 32px;
    color: #0f2f4d;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Orange Underline */
.applications-line {
    width: 60px;
    height: 4px;
    background-color: #ff6b35;
    margin: 0 auto;
}

/* ================= GRID ================= */

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= CARD BASE ================= */

.application-card {
    position: relative;
    padding: 40px;
    border-radius: 8px;
    min-height: 260px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.4s ease;
}

/* ================= BLUE OVERLAY ================= */

.application-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 47, 77, 0.35); /* Light blue default */
    transition: 0.4s ease;
    z-index: 0;
}

/* Strong Blue Hover Screen */
.application-card:hover::before {
    background: rgba(15, 47, 77, 0.75);
}

/* ================= TEXT STYLING ================= */

.application-card h3,
.application-card p {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.application-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.application-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ================= ICON ================= */

.application-icon {
    width: 60px;
    height: 60px;
    background-color: #0f2f4d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
    border-radius: 4px;
}

.application-icon i {
    color: #ffffff;
    font-size: 24px;
}

/* Icon changes on hover */
.application-card:hover .application-icon {
    background-color: #ff6b35;
}

/* ================= BACKGROUND IMAGES ================= */

.industrial-card {
    background-image: url("image/industrial card.jfif");
}

.godown-card {
    background-image: url("image/Gowdon.jfif");
}

.Warehouse-card {
    background-image: url("image/warehouse.jfif");
}

.TensileParking-card {
    background-image: url("image/tensile.jfif");
}

.ConventionCommercialShed-card {
    background-image: url("image/images (1).jfif");
}

.InstituteProjectsServices-card {
    background-image: url("image/Institute Projects & Services.jpg");
}

/* ================= CARD HOVER ANIMATION ================= */

.application-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }
}


/* SECTION */
.ie-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.ie-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.ie-header {
    text-align: center;
    margin-bottom: 50px;
}

.ie-header h2 {
    font-size: 36px;
    color: #0f2f4d;
    font-weight: 700;
}

.ie-underline {
    width: 80px;
    height: 4px;
    background: #c32026;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* GRID */
.ie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD BASE */
.ie-card {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    transition: 0.4s ease;
}

/* Transparent Overlay */
.ie-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 47, 77, 0.55);
    transition: 0.4s ease;
    z-index: 1;
}

/* Keep content above overlay */
.ie-card * {
    position: relative;
    z-index: 2;
}

/* ICON */
.ie-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

/* TEXT */
.ie-card h4 {
    font-size: 16px;
    font-weight: 600;
}

/* HOVER EFFECT */
.ie-card:hover {
    transform: translateY(-8px);
}

.ie-card:hover::before {
    background: rgba(195, 32, 38, 0.65);
}

/* ===== BACKGROUND IMAGES ===== */

.office-card {
    background-image: url("image/modular worksatatin.jfif");
}

.kitchen-card {
    background-image: url("image/modular kichen.jfif");
}

.ceiling-card {
    background-image: url("image/false celling.jfif");
}

.acp-card {
    background-image: url("image/acp glassing.jfif");
}

.glass-card {
    background-image: url("image/glass door.jfif");
}

.upvc-card {
    background-image: url("image/upvc windows.jfif");
}

.aluminium-card {
    background-image: url("image/aluminium windows.jfif");
}

.partition-card {
    background-image: url("image/partition works.jfif");
}
.ie-card {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    transition: 0.4s ease;
    
    /* Add transparent border initially */
    border: 2px solid transparent;
}
.ie-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(195, 32, 38, 0.65);
    box-shadow: 0 10px 25px rgba(195, 32, 38, 0.25);
}

.why-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    font-size: 34px;
    color: #0f2f4d;
}

.why-line {
    width: 70px;
    height: 4px;
    background: #ff6b35;
    margin: 10px auto 0;
}

/* CONTENT LAYOUT */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* IMAGE */
.why-image img {
    width: 100%;
    border-radius: 10px;
    transition: 0.4s ease;
}

.why-image img:hover {
    transform: scale(1.03);
}

/* FEATURES */
.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-left: 4px solid transparent;
    transition: 0.3s ease;
    border-radius: 6px;
}

.why-item:hover {
    border-left: 4px solid #ff6b35;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.why-icon {
    background: #0f2f4d;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
}

/* STATS */
.why-stats {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08); /* transparent white */
    backdrop-filter: blur(8px); /* glass effect */
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
    padding: 35px 20px;
    border-top: 4px solid rgba(195, 32, 38, 0.65);
    border-radius: 12px;
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-box i {
    font-size: 24px;
    color: #0f2f4d;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 28px;
    color: #c32026;
    margin: 10px 0;
}
.why-icon {
    background: #0f2f4d;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s ease;
}
.why-item:hover .why-icon {
    background: #ff6b35;
    color: #fff;
    transform: rotate(8deg) scale(1.1);
}
.stat-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(15, 47, 77, 0.1); /* light blue transparent */
    color: #0f2f4d;
    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 15px;
    transition: 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-box:hover i {
    background: #0f2f4d;
    color: #fff;
    transform: scale(1.1);
}

.project-highlight {
    background: url("images/project-bg.jpg") center/cover no-repeat;
    position: relative;
    padding: 120px 20px;
    color: #fff;
}

/* Dark overlay */
.project-overlay {
    background: rgba(15, 47, 77, 0.85);
    padding: 100px 20px;
}

.project-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    animation: fadeUp 1s ease forwards;
}

.project-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.project-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Buttons */
.project-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #c32026;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #0f2f4d;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.white-next-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 20px;
}

.white-container {
    max-width: 1200px;
    margin: auto;
}

.white-header {
    text-align: center;
    margin-bottom: 50px;
}

.white-header h2 {
    font-size: 34px;
    color: #0f2f4d;
    margin-bottom: 10px;
}

.white-header p {
    color: #555;
}

/* GRID */
.white-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

/* BOX */
.white-box {
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.white-box i {
    font-size: 28px;
    color: #0f2f4d;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.white-box h4 {
    color: #0f2f4d;
    margin-bottom: 10px;
}

.white-box p {
    color: #666;
}

/* Hover Effect */
.white-box:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.white-box:hover i {
    color: #ff6b35;
}

/* About page*/
/* ================= ABOUT HERO SECTION ================= */

.about-hero {
  position: relative;
  height: 55vh;
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e")
              center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark blue overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(7, 35, 63, 0.85),
    rgba(7, 35, 63, 0.85)
  );
}

/* Content */
.about-hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}

.about-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 16px;
  opacity: 0.95;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
  }

  .about-hero-content h1 {
    font-size: 30px;
  }

  .about-hero-content p {
    font-size: 14px;
  }
}
/* ================= CEO SECTION ================= */

.about-ceo-section{
  padding:70px 0;
  background:#f7f9fc;
}

.about-ceo-card{
  max-width:1000px;
  margin:auto;
  background:#fff;
  padding:40px 45px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:35px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* Image */
.about-ceo-image img{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
}

/* Content */
.about-ceo-content h3{
  font-size:24px;
  color:#0d2c54;
  margin-bottom:4px;
}

.about-ceo-content span{
  font-size:14px;
  color:#c62828;
  font-weight:600;
  display:block;
  margin-bottom:15px;
}

/* Quote */
.about-ceo-quote{
  border-left:4px solid #c62828;
  padding-left:18px;
}

.about-ceo-quote p{
  font-size:14px;
  line-height:1.8;
  color:#4a5560;
  font-style:italic;
}

/* ================= RESPONSIVE ================= */

@media (max-width:768px){

  .about-ceo-card{
    flex-direction:column;
    text-align:center;
  }

  .about-ceo-quote{
    border-left:none;
    border-top:4px solid #c62828;
    padding-left:0;
    padding-top:15px;
  }
}
/* ================= CONTENT INFO SECTION ================= */

.content-info-section{
  padding:80px 0;
  background:#ffffff;
}

.content-info-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

/* Text */
.content-info-text h2{
  font-size:32px;
  color:#0d2c54;
  margin-bottom:20px;
}

.content-info-text p{
  font-size:15px;
  line-height:1.8;
  color:#4b5563;
  margin-bottom:15px;
  max-width:620px;
}

/* Points */
.content-info-points{
  margin-top:20px;
  list-style:none;
  padding:0;
}

.content-info-points li{
  font-size:15px;
  color:#0d2c54;
  margin-bottom:12px;
  padding-left:28px;
  position:relative;
}

.content-info-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#c62828;
  font-weight:700;
}

/* Image */
.content-info-image img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .content-info-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .content-info-image img{
    height:260px;
  }

  .content-info-points li{
    text-align:left;
  }
}
/* ================= COMPANY CORE VALUES ================= */

.company-values{
  background:#f8f9fa;
  padding:80px 20px;
  text-align:center;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.company-values-container{
  max-width:1200px;
  margin:auto;
}

/* Header */
.company-values-header h2{
  font-size:34px;
  color:#0d2c54;
  margin-bottom:10px;
}

.company-values-header p{
  color:#6b7280;
  font-size:15px;
  margin-bottom:50px;
}

/* Grid */
.company-values-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  justify-items:center;
}

/* Cards */
.company-value-card{
  background:#fff;
  padding:40px 30px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  text-align:left;
  max-width:350px;
  transition:0.3s ease;
}

.company-value-card:hover{
  transform:translateY(-6px);
}

/* Icon */
.company-icon{
  width:50px;
  height:50px;
  background:#fff1f1;
  color:#c62828;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:20px;
}

/* Text */
.company-value-card h3{
  font-size:18px;
  color:#0d2c54;
  margin-bottom:12px;
}

.company-value-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){
  .company-values-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .company-values-grid{
    grid-template-columns:1fr;
  }
}


/* FOOTER */
.footer{
background:#0f172a;
color:#fff;
padding:60px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer h4{
margin-bottom:15px;
}

.footer ul{
list-style:none;
}

.footer ul li{
margin-bottom:8px;
cursor:pointer;
transition:0.3s;
}

.footer ul li:hover{
color:#c32026;
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:20px;
margin-top:40px;
font-size:14px;
opacity:0.8;
}
.social-icons{
display:flex;
gap:15px;
margin-top:20px;
}

.social-icons a{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.08);
color:#fff;
border-radius:6px;
transition:0.4s;
font-size:16px;
}

/* Hover Effects */
.social-icons a:hover{
transform:translateY(-6px);
}

/* Brand Colors on Hover */
.social-icons a:nth-child(1):hover{
background:#e4405f;
}

.social-icons a:nth-child(2):hover{
background:#e4405f;
}

.social-icons a:nth-child(3):hover{
background:#e4405f;
}

.social-icons a:nth-child(4):hover{
background:#e4405f;
}

/* ================= FOOTER CONTACT STYLE ================= */

.footer-contact-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start; /* Aligns icon with the first line of text */
  gap: 15px;
  transition: 0.3s ease;
}

/* Icon Styling - Red by default as per image */
.footer-contact-item i {
  color: #b91d24; /* Your brand red */
  font-size: 18px;
  margin-top: 4px; /* Centers icon with line-height */
  transition: 0.3s ease;
}

.footer-contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Hover Effect for Contact Items */
.footer-contact-item:hover i {
  color: #ffffff; /* Icon turns white on hover */
  transform: scale(1.1);
}

.footer-contact-item:hover p {
  color: #ffffff;
}

/* Fix for Quick Links Hover */
.footer ul li:hover {
  color: #b91d24; /* Matches the brand red used in the contact icons */
  padding-left: 5px; /* Subtle movement effect */
}
/* ANIMATION */
@keyframes fadeUp{
from{opacity:0;transform:translateY(40px);}
to{opacity:1;transform:translateY(0);}
}

/* MOBILE */
@media(max-width:768px){

.nav-links{
display:none;
flex-direction:column;
background:#0f2f4d;
position:absolute;
top:70px;
right:0;
width:200px;
padding:20px;
}

.nav-links.show{
display:flex;
}

.menu-toggle{
display:block;
}

.hero{
height:auto;
padding:80px 0;
}

.hero h1{
font-size:32px;
}

}
.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 15px;
}

/* ================= MOBILE FINAL FIX ================= */

/* GLOBAL */
@media (max-width: 768px){

  /* CONTAINER */
  .container{
    padding: 0 15px;
  }

  /* TOP BAR */
  .top-flex{
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .top-contact{
    flex-direction: column;
    gap: 5px;
  }

  /* NAVBAR */
  .logo img{
    height: 50px;
    width: auto;
  }

  .nav-links{
    width: 100%;
    right: 0;
    top: 65px;
  }

  /* HERO */
  .hero{
    padding: 80px 20px;
    text-align: center;
  }

  .hero-content{
    max-width: 100%;
  }

  .hero h1{
    font-size: 30px;
    line-height: 1.3;
  }

  .hero p{
    font-size: 14px;
  }

  .hero-buttons{
    justify-content: center;
  }

  /* ABOUT */
  .about-section{
    padding: 60px 0;
  }

  .about-content h2{
    font-size: 26px;
  }

  /* SERVICES */
  .services-heading h2{
    font-size: 26px;
  }

  /* CHOOSE SECTION */
  .choose-header h2{
    font-size: 26px;
  }

  /* INDUSTRIES */
  .section-header-light h2{
    font-size: 26px;
  }

  /* GALLERY */
  .gallery-header h2{
    font-size: 26px;
  }

  .project-img{
    height: 200px;
  }

  /* CONTACT */
  .contact-header h2{
    font-size: 26px;
  }

  /* FOOTER */
  .footer{
    text-align: center;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-contact-item{
    justify-content: center;
  }

  .social-icons{
    justify-content: center;
  }
}