@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
}

h1, h2 {
    font-weight: 300;
    line-height: 1.2;
}

p {
    margin: 10px 0;
}

img {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    opacity: 0.8;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s;
}

.navbar.top {
    background: transparent;
}

.navbar a {
    color: #fff;
    padding: 10px 20px;
    margin: 0 5px;
}

.navbar a:hover {
    border-bottom: #f59f0a 2px solid;
}

.navbar ul {
    display: flex;
}

.navbar .logo {
   height: 110px;
   width: 180px; 
   visibility: visible;      
}

.navbar.top .logo {
    visibility: hidden;
  }



/* Header */
.hero {
    background: url('../images/home/concert-2616946.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
}
.submittcontent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px; 
}
.hero .content img {
    height: 330px;
    width: 540px;
}

.hero .content h1 {
    font-size: 55px;
}

.hero .content p {
    font-size: 23px;
    max-width: 600px;
    margin: 20px 0 30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero * {
    z-index: 10;
}

.hero.warehouse {
    background: url('../images/home/headlights-802634.jpg') no-repeat center center/cover;
    height: 100vh;

}
.warehousecontent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
    /* margin-top: 30px; */
}
.warehousecontent img{
    height: 330px;
    width: 540px;
    margin-top: 10px;
}
.warehousecontent h1{
    font-size: 80px;
}
.lap{
    display: block;
}
.mobile{
    display: none;
}


/* Icons */
.icons {
    padding: 30px;
}

.icons h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.icons i {
    background-color: #f59f0a;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 15px;
}

.cases img:hover {
    opacity: 0.7;
}

.team img {
    border-radius: 5px;
    height: 600px;
}

/* Callback form */
.callback-form {
    width: 100%;
    padding: 20px 0;
}

.callback-form label {
    display: block;
    margin-bottom: 5px;
}

.callback-form .form-control {
    margin-bottom: 15px;
}

.callback-form input {
    width: 100%;
    padding: 4px;
    height: 40px;
    border: #f5f5f5 1px solid;
}

.callback-form input:focus {
    outline-color: #f59f0a;
}

.callback-form .btn {
    padding: 12px 0;
    margin-top: 20px;
}

/* Post */
.post {
    padding: 50px 30px;
}

.post h2 {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: #ccc solid 1px;
}

.post .meta {
    margin-bottom: 30px;
}

.post img {
    width: 300px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 200px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #f59f0a;
}

.footer .social > * {
    margin-right: 30px;
}

/* Event Section Grid */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  }
  
  .event-body {
    padding: 20px;
    background: #fff5ef; /* light orange shade */
    text-align: center;
    flex: 1;
  }
  
  .event-body h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #e65c00; /* orange */
  }
  
  .event-body p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .event-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin-bottom: 20px;
  }
  
  .event-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #444;
    width: 80px;
    text-align: center;
  }
  
  .event-icons i {
    font-size: 20px;
    margin-bottom: 5px;
    color: #ff6600; /* orange accent */
  }
  
  .btn-card {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #ff6600;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    color: #ff6600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-card:hover {
    background: #ff6600;
    color: #fff;
  }
  
  /* ✅ Responsive Tweaks */
  @media (max-width: 992px) {
    .event-body p {
      font-size: 13px;
    }
  }
  
  @media (max-width: 768px) {
    .event-icons {
      gap: 10px 15px;
    }
    .event-icons div {
      width: 70px;
    }
  }
  
  @media (max-width: 480px) {
    .event-body {
      padding: 15px;
    }
    .event-body h3 {
      font-size: 16px;
    }
    .event-body p {
      font-size: 12px;
    }
    .btn-card {
      font-size: 12px;
      padding: 6px 12px;
    }
  }
  

  /* Gallery Section */
#cases {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  #cases .section-header h4 {
    font-size: 18px;
    font-weight: 500;
    color: #777;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  #cases .section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  #cases .section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff6600;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  #cases .section-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
  }
  
  /* Image Cards */
  /* Fix Gallery Layout */
#cases .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  #cases .column {
    display: contents; /* Remove the extra column wrappers */
  }
  
  #cases .column a {
    display: block;
  }
  
  #cases .column img {
    width: 100%;
    height: 220px; /* fixed height for uniform look */
    object-fit: cover; /* crops nicely without distortion */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #cases .column img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  }
  
  .btn-big {
    font-size: 18px;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    background: #ff6600;
    color: #fff;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .btn-big:hover {
    background: #e65c00;
    transform: scale(1.05);
  }
  
  
/* Mobile */
/* @media(max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: 120px;
        padding: 20px;
    }

    .navbar a {
        padding: 10px 10px;
        margin: 0 3px;
    }

    .flex-items {
        flex-direction: column;
    }

    .flex-columns .column, .flex-grid .column {
        flex: 100%;
        max-width: 100%;
    }

    .team img {
        width: 70%;
    }
} */
