@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
:root{
    --blue: #2c3078;
    --red: #8f1921;
    --bg: #eee;
    --bg2:#fdfafa;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter Tight", sans-serif; */
    /* font-family: "Montserrat", sans-serif; */
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Onest", sans-serif;
    scroll-behavior: smooth;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--red);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f102";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--blue);
  }
  #top:active {
    background-color: var(--blue);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/

#nav .menu ul{
    justify-content: right;
    display: flex;
}
#nav .menu ul li{
    padding: 10px 15px;
    list-style: none;
}
#nav .menu ul li a{
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--black);
    position: relative;
    transition: .4s ease-in-out;
}
#nav .menu ul li a::after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-radius: 30px;
    height: 4px;
    transition: .4s ease-in-out;
    background-color: var(--red);
}
#nav .menu ul li a:hover::after{
    width: 30px;
}
#nav .menu ul li a:hover{
    color: var(--blue);
    opacity: 1;
}
#nav{
    position: fixed;
    top: 35px;
    left: 50%;
    width: 96%;
    border-radius: 15px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    z-index: 999999999;
    /* background-color: var(--white); */
    background: rgba(250, 250, 250, 0.6);
    margin: 0 auto !important;
    transition: .4s ease-in-out;
    /* box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3); */
}
/* #nav img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%);
} */
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    top: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    padding: 10px 0;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15) !important;
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    filter: none !important;
}

/********* Header Section End *********/

/********* Banner Section Start *********/

#banner{
    position: relative;
    padding-top: 15px;
    padding-bottom: 10px;
    overflow: hidden;
    margin: 0 auto;
    width: 98%;
    height: auto;
}
#banner .ban-text{
    position: absolute;
    font-weight: 600;
    z-index: 9999;
    top: 55%;
    left: 50%;
    color: var(--white);
    font-size: 50px;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) translateY(-50%);
}
#banner img{
    width: 100%;
    border-radius: 20px;
}

/********* Banner Section End *********/

/********* About Section Start *********/

.heading .small-head{
    display: inline-block;
    letter-spacing: 1px;
    width: auto;
    padding: 4px 10px;
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    background-color: transparent;
    border: 2px solid var(--red);
    border-radius: 5px;
    margin-bottom: 20px;
    transition: .3s ease-in-out;
}
.heading .small-head:hover{
    color: var(--white);
    background-color: var(--red);
}
.heading h4{
    font-size: 35px;
    font-weight: 600;
}
#about h3{
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 25px;
}
#about .a-btn a{
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    transition: .3s ease-in-out;
}
#about .a-btn a:hover{
    text-decoration: none;
    color: var(--red);
    font-weight: 700;
}
#about .a-btn a i{
    color: var(--red);
    font-size: 17px;
    transition: .3s ease-in-out;
}
#about .a-btn a:hover i{
    margin-left: 5px;
}
/********* About Section End *********/

/********* Products Section Start *********/

#product{
    background-color: #f2f2f2;
}
#product .pro-wrap{
    position: relative;
    height: 100%;
    border: 2px solid var(--blue);
    border-radius: 10px;
    overflow: hidden;
    margin: 14px 0;
}
#product .pro-wrap:hover .pro-text{
    bottom: 30%;
    height: auto;
    background-color: var(--blue);
    transform: translateY(-50%) translateX(-50%);
}
#product .pro img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: bottom;
    z-index: 8;
}
#product .pro-text{
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
    color: var(--white);
    text-align: center;
    padding: 10px;
    width: 96%;
    background-color: var(--red);
    position: absolute;
    bottom: 7px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 110;
    transition: .4s ease-in-out;
}
#product .pro2{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    background-image: url(./img/pro-12.webp);
    background-color: rgba(0, 0, 0, 0.6);
}
#product .pro2:hover #overlay{
    background-color: rgba(44, 48, 120, 0.8);
}
#product .pro2:hover h3{
    text-decoration: underline;
}
#product .pro2 a{
    text-decoration: none;
}
#product .pro2 h3{
    position: relative;
    z-index: 110;
}
.glightbox-container{
    z-index: 9999999999999999999999999 !important;
}
#product .pro2 h3{
    color: var(--white);
    font-weight: 700;
}
#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 10;
  transition: .3s ease-in-out;
}

/********* Products Section End *********/

/********* Core Values Section Start *********/

.v-wrap{
    border: 1px solid var(--blue);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.05);
    transition: .3s ease-in-out;
}
.v-wrap:hover{
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white) !important;
}
.v-wrap:hover i{
    color: var(--white);
}
.v-wrap:hover p{
    color: #cbcbcb !important;
}
.v-wrap:hover .v-num{
    opacity: 0.4;
}
.v-icon i{
    font-size: 30px;
    color: var(--red);
    transition: .3s ease-in-out;
}
.v-num{
    font-size: 30px;
    font-weight: 900;
    opacity: 0.2;
    transition: .3s ease-in-out;
}
.v-head h5{
    font-size: 18px;
    font-weight: 800;
    transition: .3s ease-in-out;
}
.v-text p{
    font-size: 14px;
    transition: .3s ease-in-out;
}
.v-det{
    font-size: 130px;
    opacity: 0.1;
    font-weight: 700;
}
.v-wrap2{
    position: relative;
}
.v-info{
    font-size: 20px;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/********* Core Values Section End *********/

.breadcrumb-item{
    font-size: 17px;
    
}
.breadcrumb-item a{
    text-decoration: none;
    font-weight: 600;
    color: var(--black) !important;
    transition: .3s ease-in-out;
}
.breadcrumb-item a:hover{
    color: var(--red) !important;
}

.a-text p{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}
.s-icon img{
    filter: brightness(0) saturate(100%) invert(14%) sepia(89%) saturate(1799%) hue-rotate(334deg) brightness(107%) contrast(104%);
}

.frame {
max-width: 100%;
margin: 0 auto;
border-radius: 6px;
}

/* grid layout: 12-column for precise placement */
.collage {
display: grid;
grid-template-columns: repeat(12, 1fr);
/* three rows: top small row, middle part of bottom, bottom small row */
grid-template-rows: 320px 300px 300px;
gap: 12px;
align-items: stretch;
}


/* image tiles */
.tile {
width: 100%;
height: 100%;
overflow: hidden;
background: #444; /* fallback while images load */
border: 8px solid #fff; /* white gutters like your reference */
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.tile img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}


/* placements to match your image */
.a { grid-column: 1 / 5; grid-row: 1 / 2; }
.b { grid-column: 5 / 9; grid-row: 1 / 2; }
.c { grid-column: 9 / 13; grid-row: 1 / 2; }


/* big left block spans two rows (rows 2 and 3) */
.d { grid-column: 1 / 9; grid-row: 2 / 4; }


/* two stacked blocks on the right */
.e { grid-column: 9 / 13; grid-row: 2 / 3; }
.f { grid-column: 9 / 13; grid-row: 3 / 4; }


/* responsive: stack on small screens */
@media (max-width: 720px) {
.collage {
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(6, 120px);
}
.a { grid-column: 1 / 7; grid-row: 1 / 2; }
.b { grid-column: 1 / 7; grid-row: 2 / 3; }
.c { grid-column: 1 / 7; grid-row: 3 / 4; }
.d { grid-column: 1 / 7; grid-row: 4 / 5; }
.e { grid-column: 1 / 7; grid-row: 5 / 6; }
.f { grid-column: 1 / 7; grid-row: 6 / 7; }
}


/* very small phones: reduce gutters */
@media (max-width: 420px) {
.collage { gap: 8px; }
.tile { border-width: 6px; }
}

.contact-box {
      background: #eff7fc;
      padding: 30px;
      border-radius: 10px;
      height: 100%;
    }
    .contact-box h4 {
      font-weight: bold;
    }
    .contact-box p {
      margin-bottom: 15px;
    }
    .contact-box span{
        color: var(--blue);
        font-size: 20px;
    }
    .contact-box i {
        font-size: 20px;
      color: var(--red);
      margin-right: 7px;
    }
    .form-section {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
    }
    .form-section h4 {
      font-weight: bold;
    }
    .btn-submit {
      background: var(--blue);
      border: none;
      color: #fff;
      padding: 10px;
      width: 100%;
      font-size: 16px;
      border-radius: 6px;
    }
    .btn-submit:hover {
      background: var(--red);
    }

/********* Footer Section Start *********/

#footer{
    margin-top: -7px;
   background-image: url(./img/footer.webp);
    background-size: cover;
    background-position: center;
}
#footer .logo img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%) !important;
}
#footer p{
    opacity: 0.7;
    color: var(--white);
    font-size: 15px;
}
#footer .copy p{
    border-radius: 10px;
    color: #b3b3b3;
    padding: 14px 5px;
    opacity: 1;
    background-color: rgba(19, 24, 79, 0.6);
}
#footer h4{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--white);
    position: relative;
    margin-bottom: 15px !important;
}
#footer h4::after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 30px;
    height: 4px;
    background-color: var(--red);
}
#footer .men a{
    color: var(--white);
    opacity: 0.8;
    font-weight: 500;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#footer .men ul{
    padding-top: 10px;
}
#footer .men a:hover{
    opacity: 1;
}
#footer .men a i{
    transition: .4s ease-in-out;
    margin-right: 0;
}
#footer .men a:hover i{
    margin-right: 5px;
}
#footer .men ul li{
    margin-bottom: 7px;
    list-style: none;
}
#footer .social ul li{
    margin-right: 20px;
    list-style: none;
}
#footer .social ul li a{
    font-size: 25px;
    color: var(--white);
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    display: flex;
}
#footer .contact i{
    margin-right: 8px;
    color: var(--white);
    font-size: 18px;
    opacity: 0.8;
}
#footer .contact li{
    padding-bottom: 8px;
}
#footer span a{
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#footer span a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer hr{
    border-color: #fff;
}

/********* Footer Section End *********/
