﻿@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Momo+Trust+Display&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

.section-title
{
  font-family: "Momo Trust Display", sans-serif;
  font-weight: 700;
}
.text-secondary
{
     font-family: "Fredoka", sans-serif;
}
p
{
    font-family:'Noto Sans', sans-serif;
    font-weight:400;
    font-size:17px;
}

/* ----------------------------
   Top Bar
-----------------------------*/
.top-bar {
  background-color: #d2a967;
  color: #fff;
  font-size: 14px;
  padding: 6px 0; 
}
.top-bar .social-icons
{
    display:block;
}
.top-bar .contact-info span {
  margin-right: 20px;
}
.top-bar .social-icons a 
{
  
  background: #0383df;
    padding: 5px;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
  color: #fff;
  margin-left: 10px;
  transition: 0.3s;
}
.top-bar .social-icons a:hover {
  color: #1e1e60;
}

@media(max-width:768px)
{
    .top-bar .social-icons
    {
        display:block;
    }
    .header-right .header-social
    {
        display:none;
    }
}

/* ----------------------------
   Top Bar END
-----------------------------*/

/*========= Home Slider Style ===========*/
 .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
     /* Stylish navigation buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }

  /* Hover effect */
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: linear-gradient(135deg, #f2e69a,#f2e69a);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(242, 230, 154, 0.8);
    color:#000;
  }

  /* Arrow icon customization */
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
  }
  
/*========= Home Slider Style END ============*/

/*========== Default page infrastructure style =============*/
/*
 .infra-creative {
    padding: 80px 0;
    background: #ffffff;
}

.infra-title {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.infra-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    margin: 10px auto 18px;
    border-radius: 20px;
}

.infra-text {
    max-width: 820px;
    margin: auto;
    color: #555;
    font-size: 15px;
}

.infra-btn {
    border: 2px solid #ffc107;
    border-radius: 50px;
    padding: 8px 26px;
    font-weight: 600;
    margin-top: 8px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    align-items: end;
}

.infra-box {
    position: relative;
    height: 240px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    transition: 0.45s ease;
}

.infra-box.big {
    height: 330px;
    transform: translateY(-25px);
}

.infra-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.infra-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15),
        transparent
    );
}

.infra-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
}

.infra-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

.infra-box.big:hover {
    transform: translateY(-35px);
}

.infra-box:hover img {
    transform: scale(1.1);
}

@media(max-width: 1199px) {
    .infra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .infra-box.big {
        transform: none;
        height: 280px;
    }
}

@media(max-width: 767px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }
}
*/
/**===##===**/
.infra-v2 {
    padding: 90px 0;
    background: linear-gradient(180deg,#ffffff,#f7f9fc);
}

/* Header */
.infra-head {
    text-align: center;
    max-width: 820px;
    margin: auto;
}

.infra-head h2 {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.infra-head span {
    display: block;
    width: 90px;
    height: 4px;
    margin: 12px auto;
    background: linear-gradient(90deg,#ffb703,#219ebc);
    border-radius: 20px;
}

.infra-head p {
    font-size: 15px;
    color: #555;
}

.infra-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #ffb703;
    text-decoration: none;
}

/* ===== PILLARS ===== */
.infra-pillars {
    margin-top: 60px;
    display: flex;
    gap: 22px;
    align-items: flex-end;
}

.pillar {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
    transition: 0.5s ease;
}

/* Different heights */
.p1 { height: 300px; }
.p2 { height: 380px; }
.p3 { height: 320px; }
.p4 { height: 290px; }
.p5 { height: 340px; }

.pillar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Bottom label panel */
.pillar-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.3px;
    color:#e7b300;
}

/* Hover */
.pillar:hover {
    transform: translateY(-18px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.35);
}

.pillar:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media(max-width: 992px){
    .infra-pillars{
        flex-wrap: wrap;
    }
    .pillar{
        flex: 0 0 calc(50% - 12px);
        height: 280px !important;
    }
}

@media(max-width: 576px){
    .pillar{
        flex: 0 0 100%;
    }
}

/*========== Default page infrastructure style END =============*/


