:root {
    --blue: #0c1737;
    --blue2: #0c1737;
    --green: #548005;
    --text: #243142;
    --muted: #243142;
    --light: #f4f8fb;
    --white: #fff;
    --shadow: 0 14px 30px rgba(0, 45, 90, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.topbar {
    background: var(--blue2);
    color: #fff;
    font-size: 13px
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0
}

.topbar .container span{
    margin: 0px 10px!important;
}

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .07)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 900;
    font-size: 31px;
    letter-spacing: 1px
}

.logo img{
    width: 135px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green) 0 45%, var(--blue) 46%);
    clip-path: polygon(0 0, 38% 0, 55% 53%, 78% 0, 100% 0, 63% 100%, 40% 100%)
}

.logo small {
    display: block;
    font-size: 8px;
    color: #6b7280;
    letter-spacing: .3px;
    margin-top: -8px
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 13px;
    font-weight: 800;
    color: #1e344c
}

.menu a {
    padding: 8px 0;
    border-bottom: 2px solid transparent
}

.menu a:hover,
.menu a.active {
    color: var(--green);
    border-color: var(--green)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
    border: 0
}

.btn.green {
    background: var(--green)
}

.hamb {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    color: var(--blue)
}


/* Banner Css Start ---------------------------------------- */

.metal-hero{
  position:relative;
  min-height:640px;
  background:
    linear-gradient(90deg,#fff 26%,#fff 9%,rgba(255,255,255,.75) 10%,rgba(255,255,255,0) 39%),
    url("../images/banner.jpeg") center center/cover no-repeat;
  overflow:hidden;
  padding:80px 5%;
}

.hero-content{
  max-width:520px;
  position:relative;
  z-index:2;
}

.small-title{
  color:#548005;
  font-size:25px;
  letter-spacing:1px;
  font-weight:600;
  margin:0 0 15px;
}

.hero-content h1{
  margin:0;
  font-size:60px;
  line-height:1.05;
  font-weight:700;
  color:#003865;
}

.hero-content h1 span{
  color:#548005;
}

.line{
  width:95px;
  height:5px;
  background:linear-gradient(90deg,#6fa43a 55%,#003865 55%);
  margin:28px 0;
}

.desc{
  font-size:20px;
  line-height:1.45;
  color:#222;
  margin-bottom:45px;
}

.features{
  display:flex;
  gap:0;
  max-width:425px;
}

.features div{
  width: 25%;
    text-align: center;
    border-right: 1px solid #9aa8b5;
    color: #003865;
    font-size: 36px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.features div img{
  width:45%;
  text-align: center;
}

.features div:last-child{
  border-right:0;
}

.features span{
  display:block;
  margin-top:10px;
  font-size:15px;
  font-weight:600;
  line-height:1.2;
}

.metal-strip{
  background:#003865;
  color:#fff;
  display:flex;
  align-items:center;
  padding:28px 5%;
  gap:50px;
  font-family:Arial, sans-serif;
}

.strip-left{
  min-width:410px;
  font-size:16px;
  line-height:1.35;
  border-right:1px solid rgba(255,255,255,.25);
  padding-right:40px;
}

.strip-left span{
  color:#8ab94b;
  font-weight:500;
}

.strip-items{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:35px;
  width:100%;
  text-align:center;
}

.strip-items div{
      color: #8ab94b;
    font-size: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.strip-items div img{
  width: 50%;
}

.strip-items span{
  display:block;
  color:#fff;
  font-size:11px;
  margin-top:8px;
}

.bottom-line{
  text-align:center;
  padding:30px 15px;
  color:#003865;
  font:700 16px Arial, sans-serif;
  letter-spacing:4px;
}

/* Responsive */
@media(max-width:1024px){
  .metal-hero{
    min-height:auto;
    padding:60px 4%;
    background:
      linear-gradient(90deg,#fff 0%,rgba(255,255,255,.95) 45%,rgba(255,255,255,.65) 100%),
      url("hero-metals.webp") center/cover no-repeat;
  }

  .hero-content h1{
    font-size:52px;
  }

  .metal-strip{
    flex-direction:column;
    align-items:flex-start;
  }

  .strip-left{
    min-width:100%;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.25);
    padding:0 0 20px;
  }

  .strip-items{
    grid-template-columns:repeat(4,1fr);
  }
}

@media(max-width:600px){
  .metal-hero{
    padding:45px 20px;
    background:
      linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)),
      url("hero-metals.webp") center/cover no-repeat;
  }

  .small-title{
    font-size:20px;
  }

  .hero-content h1{
    font-size:38px;
  }

  .desc{
    font-size:18px;
  }

  .features{
    flex-wrap:wrap;
    gap:15px;
  }

  .features div{
    width:calc(50% - 8px);
    border:1px solid #d8d8d8;
    padding:15px 5px;
    border-radius:10px;
    background:#fff;
  }

  .strip-items{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .bottom-line{
    font-size:13px;
    letter-spacing:2px;
  }
}


/* Banner Css End ---------------------------------------------- */

.hero-img {
    background: #fff
}

.hero-img img {
    width: 100%;
    height: auto
}

.tagline {
    text-align: center;
    padding: 24px 0 16px;
    color: var(--blue);
    font-weight: 900;
    letter-spacing: 4px
}

.tagline:before,
.tagline:after {
    content: "";
    display: inline-block;
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    vertical-align: middle;
    margin: 0 35px
}

.section {
    padding: 82px 0
}

.section.light {
    background: var(--light)
}

.eyebrow {
    color: var(--green);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase
}

.title {
    text-align: center;
    margin-bottom: 38px
}

.title h1,
.title h2,
.page-hero h1 {
    margin: 6px 0;
    color: var(--blue);
    text-transform: uppercase;
    line-height: 1.15;
    font-size: 38px
}

.green {
    color: var(--green)
}

.title p {
    max-width: 760px;
    margin: auto;
    color: var(--muted)
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.35fr;
    gap: 55px;
    align-items: center
}

.about-grid h2 {
    font-size: 38px;
    line-height: 1.12;
    color: var(--blue);
    margin: 8px 0 22px
}

.about-card img {
    border-bottom: 8px solid var(--green);
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%)
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px
}

.product-card {
    background: #fff;
    border: 1px solid #d7e0ea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.product-card h3 {
    margin: 0;
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 13px;
    text-transform: uppercase
}

.product-body {
    display: grid;
    grid-template-columns: 1.15fr 1fr
}

.product-photo {
    min-height: 280px;
    background-size: cover;
    background-position: center
}

.product-photo.non {
    background-image: url('../images/non-ferrous.webp')
}

.product-photo.fer {
    background-image: url('../images/fmetal.jpg')
}

.product-list {
    padding: 24px
}

.product-list ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none
}

.product-list li {
    margin: 9px 0
}

.product-list li:before {
    content: '✓';
    color: var(--green);
    font-weight: bold;
    margin-right: 8px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px
}

.why {
    background: #fff;
    text-align: center;
    padding: 28px 18px;
    border-right: 1px solid #d8e0e8;
    transition: .25s
}

.why:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.why .ico {
   display: flex;
    justify-content: center;
}

.why .ico img {
    width: 33%;
    color: var(--green);
    line-height: 1
}

.why h3 {
    font-size: 15px;
    color: var(--blue)
}

.clients {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.client {
    height: 90px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .06);
    display: grid;
    place-items: center;
    color: var(--blue);
    font-weight: 900;
    font-size: 24px
}

.cta {
    background: linear-gradient(90deg, var(--blue2), #005190);
    color: #fff;
    padding: 40px 0
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px
}

.footer {
    background: #f7f9fc;
    padding: 50px 0 18px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px
}

.footer h4 {
    color: var(--blue);
    margin: 0 0 12px
}

.footer a,
.footer p {
    display: block;
    color: #475467;
    font-size: 14px;
    margin: 7px 0
}

.copy {
    border-top: 1px solid #dce5ef;
    margin-top: 25px;
    padding-top: 15px;
    font-size: 13px;
    color: #667085
}

/*.page-hero {*/
/*    background: linear-gradient(105deg, #fff 0 55%, #003b70 56%);*/
/*    padding: 80px 0*/
/*}*/

/*.page-hero h1 {*/
/*    font-size: 54px*/
/*}*/

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow)
}

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

.form input,
.form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #cfd8e3;
    border-radius: 4px
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .55s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

@media(max-width:950px) {
    .topbar .container {
        display: block;
        text-align: center
    }

    .hamb {
        display: block
    }

    .menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 18px 4%;
        gap: 12px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, .12)
    }

    .menu.show {
        display: flex
    }

    .tagline {
        font-size: 12px;
        letter-spacing: 2px
    }

    .tagline:before,
    .tagline:after {
        width: 35px;
        margin: 0 10px
    }

    .about-grid,
    .cards,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .why-grid,
    .clients,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .product-body {
        grid-template-columns: 1fr
    }

    .footer-grid,
    .cta .container {
        display: block
    }

    .section {
        padding: 58px 0
    }

    .nav>.btn {
        display: none
    }

    .page-hero h1,
    .title h2,
    .about-grid h2 {
        font-size: 30px
    }
}

@media(max-width:560px) {
    .container {
        width: 92%
    }

    .why-grid,
    .clients,
    .grid-3 {
        grid-template-columns: 1fr
    }

    .client {
        height: 72px
    }

    .logo {
        font-size: 24px
    }

    .logo-mark {
        width: 36px;
        height: 36px
    }

    .hero-img img {
        content: url('../images/hero-metals.webp')
    }

    .product-photo {
        min-height: 210px
    }

    .cta h2 {
        font-size: 22px
    }
}



/* ------------------ Logo Slider */

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.logo-box{
    min-width:180px;
    height:90px;
    margin:0 12px;
    background:#fff;
    border:1px solid #e8e8e8;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.logo-box img{
    max-width:140px;
    max-height:55px;
    object-fit:contain;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-180px * 7 - 24px * 7));
    }
}



/* ---------------- Cta Section------ */

.cta-section{
  background:#003b6f;
  padding:65px 5%;
  font-family:Arial, sans-serif;
}

.cta-container{
  max-width:1180px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  color:#fff;
}

.cta-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  border:1px solid rgba(255,255,255,.25);
}

.cta-icon img{
    width: 80%;
}

.cta-text{
  border-left:1px solid rgba(255,255,255,.3);
  padding-left:28px;
  flex:1;
}

.cta-text h3{
  margin:0 0 6px;
  color:#fff;
  font-size:22px;
  font-weight:600;
  letter-spacing:.5px;
}

.cta-text p{
  margin:0;
  color:#dbe8f2;
  font-size:16px;
}

.cta-btn{
  background:#73aa35;
  color:#fff;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:12px;
  transition:.3s;
}

.cta-btn:hover{
  background:#5f9427;
  transform:translateY(-2px);
}

/* Mobile */
@media(max-width:768px){
  .cta-container{
    flex-direction:column;
    text-align:center;
    gap:18px;
  }

  .cta-text{
    border-left:0;
    padding-left:0;
  }

  .cta-text h3{
    font-size:19px;
  }

  .cta-text p{
    font-size:15px;
  }
}



/* -------------------------------------Foooter Css----------- */

.footer{
    background:#fff;
    border-top:1px solid #e8edf4;
    font-family:Arial,sans-serif;
}

.footer-top{
    max-width:1300px;
    margin:auto;
    padding:0px 5%;
    display:grid;
    grid-template-columns:1fr 1fr 1fr  1fr;
    gap:40px;
}

.footer-logo{
    width:100px;
    margin-bottom:20px;
}

.footer-about p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-col h4{
    color:#003b6f;
    margin-bottom:20px;
    font-size:18px;
    font-weight:700;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#555;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#7ab63b;
    padding-left:5px;
}

.footer-col p{
    color:#555;
    line-height:1.8;
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#f2f6fa;
    color:#003b6f;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#7ab63b;
    color:#fff;
}

.social-links a img{
    width: 50%;
}

.newsletter form{
    display:flex;
    margin-top:15px;
}

.newsletter input{
    flex:1;
    height:48px;
    border:1px solid #d8dce3;
    padding:0 15px;
    outline:none;
}

.newsletter button{
    width:55px;
    border:none;
    background:#003b6f;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

.footer-bottom{
    border-top:1px solid #e8edf4;
    padding:20px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1300px;
    margin:auto;
}

.footer-bottom p{
    margin:0;
    color:#666;
}

.footer-policy{
    display:flex;
    gap:20px;
    align-items: center;
}

.footer-policy a{
    color:#666;
    text-decoration:none;
}

.footer-policy a:hover{
    color:#7ab63b;
}

@media(max-width:991px){

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

}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}



/* ----------------------- About Us - Why Choose Us ------------ */
.metal-why-section{
    background:#071522;
    padding:50px 5%;
    position:relative;
    overflow:hidden;
}

.metal-why-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(122,182,59,.08);
    border-radius:50%;
    top:-250px;
    right:-150px;
    filter:blur(80px);
}

.metal-why-container{
    max-width:1300px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.metal-why-tag{
    color:#7ab63b;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.metal-why-title{
    color:#fff;
    font-size:48px;
    margin:15px 0;
    font-weight:600;
}

.metal-why-title span{
    color:#7ab63b;
}

.metal-why-desc{
    color:#b8c3cf;
    max-width:700px;
    margin:0 auto 60px;
    line-height:1.8;
}

.metal-why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.metal-why-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 30px;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.metal-why-card:hover{
    transform:translateY(-10px);
    border-color:#7ab63b;
    box-shadow:0 15px 40px rgba(122,182,59,.15);
}

.metal-why-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#389ae9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.metal-why-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:22px;
}

.metal-why-card p{
    color:#b8c3cf;
    line-height:1.7;
}

@media(max-width:991px){

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

    .metal-why-title{
        font-size:38px;
    }
}

@media(max-width:768px){

    .metal-why-grid{
        grid-template-columns:1fr;
    }

    .metal-why-section{
        padding:70px 20px;
    }

    .metal-why-title{
        font-size:30px;
    }
}




/* ------------------------------------------ Our Clients Grid  */

.metal-clients-section{
    padding:80px 5%;
    background:#f8fafc;
    
}

.metal-clients-container{
    max-width:1300px;
    margin:auto;
}

.metal-clients-title{
    text-align:center;
    margin-bottom:50px;
   
}

.metal-clients-title span{
    color:#7ab63b;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
     margin-top:50px;
}

.metal-clients-title h2{
    color:#003b6f;
    font-size:42px;
    margin-top:12px;
    font-weight:600;
}

.metal-clients-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.metal-client-card{
    background:#fff;
    border:1px solid #e7edf3;
    border-radius:20px;
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    transition:.4s;
}

.metal-client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#7ab63b;
}

.metal-client-card img{
    max-width:180px;
    max-height:80px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.4s;
}

.metal-client-card:hover img{
    filter:none;
}

@media(max-width:991px){

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

    .metal-clients-title h2{
        font-size:32px;
    }

}

@media(max-width:767px){

    .metal-clients-grid{
        grid-template-columns:1fr;
    }

    .metal-client-card{
        height:140px;
    }

    .metal-clients-title h2{
        font-size:26px;
    }

}




/* ------------------------------- Products Grid - */

.metal-product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.metal-product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

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

.metal-product-image{
    position:relative;
    height:220px;
    overflow:hidden;
}

.metal-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.metal-product-card:hover img{
    transform:scale(1.1);
}

.metal-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
}

.metal-product-title{
    position:absolute;
    left:25px;
    right:25px;
    bottom:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.metal-product-title h3{
    color:#fff;
    font-size:32px;
    margin:0;
}

.metal-product-title span{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#7ab63b;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

.metal-product-list{
    padding:30px;
}

.metal-product-list a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#222;
    padding:12px 0;
    border-bottom:1px solid #ececec;
    transition:.3s;
}

.metal-product-list a:before{
    content:"✓";
    color:#7ab63b;
    font-weight:700;
}

.metal-product-list a:hover{
    color:#003b6f;
    padding-left:8px;
}




/* ------------------------------- Alum ----------------------- */

.aluminium-offer-section{
  background:#f5f7fa;
  padding:80px 5%;
}

.aluminium-offer-heading{
  text-align:center;
  margin-bottom:50px;
}

.aluminium-offer-heading span{
  color:#7ab63b;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
}

.aluminium-offer-heading h2{
  color:#003b6f;
  font-size:46px;
  margin-top:10px;
  font-weight:700;
}

.aluminium-offer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.aluminium-offer-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,.07);
  transition:.4s;
}

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

.aluminium-offer-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.aluminium-offer-card h3{
  color: #003b6f;
    font-size: 18px;
    margin: 18px 25px 12px;
}

.aluminium-offer-card p{
  color:#555;
  font-size:16px;
  line-height:1.7;
  margin:0 25px 30px;
}

@media(max-width:991px){
  .aluminium-offer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:767px){
  .aluminium-offer-grid{
    grid-template-columns:1fr;
  }

  .aluminium-offer-heading h2{
    font-size:32px;
  }
  .footer-col.footer-about {
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.page-hero p {
    width: 45%!important;
    font-size:14px!important;
}
}



/*-------------- Drop Down */
.dropdown{
    position: relative;
    list-style: none;
}

.dropdown > a{
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow{
    font-size: 10px;
    transition: 0.3s;
}

.submenu{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    z-index: 999;
}

.submenu li a{
    display: block;
    padding: 12px 15px;
}

.dropdown:hover .submenu{
    display: block;
}

.dropdown:hover .arrow{
    transform: rotate(180deg);
}

/* Mobile */
@media(max-width:768px){

    .submenu{
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .dropdown.active .submenu{
        display: block;
    }

    .dropdown.active .arrow{
        transform: rotate(180deg);
    }
}



.page-hero{
    height:250px;
    display:flex;
    align-items:center;
    background:url("../images/underbanner.jpg") center center/cover no-repeat!important;
}

.page-hero .container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}

.page-hero .eyebrow{
    color:#8bbd45;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.page-hero h1{
    margin:0;
    font-size:50px;
    font-weight:600;
    line-height:1;
    color:#ffffff;
    text-transform:uppercase;
}

.page-hero p{
    max-width:520px;
    margin-top:25px;
    color:#ffffff;
    font-size:18px;
    line-height:1.7;
}

.page-hero p::before{
    content:"";
    display:block;
    width:60px;
    height:4px;
    background:#8bbd45;
    margin-bottom:20px;
}

@media(max-width:991px){

    .page-hero{
        height:340px;
    }

    .page-hero h1{
        font-size:40px;
    }

    .page-hero p{
        font-size:16px;
    }
}

@media(max-width:767px){

    .page-hero{
        height:auto;
        min-height:280px;
        padding:60px 0;
        background-position:center;
    }

    .page-hero .container{
        padding:0 20px;
    }

    .page-hero h1{
        font-size:30px;
        width: 70%;
    }

    .page-hero p{
        font-size:14px;
        max-width:45%!important;
    }

    .page-hero p::before{
        width:45px;
        margin-bottom:15px;
    }
}


/*----------------------------------------*/

.alu-info-section{
  padding:70px 0;
  background:#f7f9fc;
}

.alu-info-container{
  width:92%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.alu-info-card{
  background:#fff;
  border:1px solid #e5e8ef;
  border-radius:12px;
  padding:35px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.alu-small-title{
  color:#7aad35;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
}

.alu-info-card h2{
  color:#082b57;
  font-size:32px;
  margin:8px 0 22px;
}

.alu-app-list{
  padding:0;
  margin:0;
  list-style:none;
}

.alu-app-list li{
  position:relative;
  padding-left:30px;
  margin-bottom:15px;
  color:#222;
  font-size:16px;
}

.alu-app-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  width:18px;
  height:18px;
  border:2px solid #7aad35;
  border-radius:50%;
  color:#7aad35;
  font-size:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.alu-card-image img{
  width:240px;
  height:250px;
  object-fit:cover;
  border-radius:8px;
}

.alu-card-content.full{
  width:100%;
}

.alu-grade-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin:20px 0 25px;
}

.alu-grade-grid span{
  background:#fff;
  border-radius:6px;
  padding:18px 10px;
  text-align:center;
  font-weight:800;
  color:#082b57;
  box-shadow:0 5px 14px rgba(0,0,0,.10);
}

.alu-grade-grid span:last-child{
  color:#7aad35;
  font-size:13px;
}

.alu-info-card p{
  color:#333;
  font-size:15px;
  line-height:1.7;
  margin:0;
}

@media(max-width:991px){
  .alu-info-container{
    grid-template-columns:1fr;
  }
}

@media(max-width:767px){
  .alu-info-section{
    padding:45px 0;
  }

  .alu-info-card{
    flex-direction:column;
    align-items:flex-start;
    padding:25px;
  }

  .alu-info-card h2{
    font-size:25px;
  }

  .alu-card-image img{
    width:100%;
    height:220px;
  }

  .alu-grade-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
}


.founder  img{
    width: 270px;
    margin: auto;
}



.founder-section{
  padding: 90px 20px;
  background: linear-gradient(135deg,#ffffff 0%,#f6f9fc 100%);
}

.founder-container{
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.founder-tag{
  display: inline-block;
  padding: 8px 18px;
  background: #0b1736;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.founder-content h2{
  font-size: 44px;
  line-height: 1.1;
  color: #07183a;
  margin: 0 0 24px;
  font-weight: 800;
}

.founder-content p{
  font-size: 17px;
  line-height: 1.8;
  color: #25334d;
  margin-bottom: 18px;
  max-width: 620px;
}

.founder-image{
  position: relative;
  text-align: center;
}

.founder-image::before{
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  right: 37px;
  bottom: -20px;
  background: #0b1736;
  border-radius: 30px;
  z-index: 0;
}

.founder-image img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  display: inline-block;
  height: 400px;
}

/* Mobile Responsive */
@media(max-width: 900px){
  .founder-section{
    padding: 60px 18px;
  }

  .founder-container{
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }

  .founder-content p{
    margin-left: auto;
    margin-right: auto;
  }

  .founder-content h2{
    font-size: 34px;
  }

  .founder-image::before{
    left: 50%;
    transform: translateX(-50%);
  }
}

@media(max-width: 480px){
  .founder-content h2{
    font-size: 30px;
  }

  .founder-content p{
    font-size: 15px;
    line-height: 1.7;
  }

  .founder-image img{
    max-width: 280px;
    height: auto;
  }
}

.fHeading{
        color: white !important;
    position: relative;
    z-index: 9999999 !important;
    font-size: 25px;
    margin: 0px!important;
}