.hero-section {
    position: relative;
    background-size: cover !important;
    height: 90vh;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(10 25 47 / 0%), rgb(0 0 0 / 10%));
}

.title-heading {
    position: relative;
    z-index: 2;
}

.heading {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {
    from {opacity:0; transform: translateY(40px);}
    to {opacity:1; transform: translateY(0);}
}
.about-sec img {
    border-radius: 15px;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}






/* ===== CORE VALUES MODERN 2026 STYLE ===== */

.core-modern {
    background: #0a192f;
    padding: 100px 0;
    color: white;
}

.core-heading {
    font-size: 42px;
    font-weight: 700;
}

.core-subtext {
    
    margin: auto;
    opacity: 0.75;
    font-size: 16px;
}

.core-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
    height: 100%;
}

.core-card:hover {
    transform: translateY(-12px);
    /*background: linear-gradient(135deg,#0d6efd,#002855);*/
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.core-card h5 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #0a192f;
}

.core-card p {
    font-size: 15px;
    opacity: 0.8;
    color: #0a192f;
    text-align: justify;
}

.core-icon {
    width: 60px;
    transition: 0.4s;
}

.core-card:hover .core-icon {
    transform: scale(1.1);
}
/* Section Background */


/* Title */
.service-title {
    font-size: 38px;
    position: relative;
}

.service-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #009688;
    display: block;
    margin: 15px auto 0;
}

/* Card Style */
.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

/* Fade Animation */
@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.3);
}

/* Image Box */
.img-box {
    overflow: hidden;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    transition: 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* Text */
.service-card h5 {
    margin-top: 20px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .service-title {
        font-size: 30px;
    }
}

.philosophy-section {
  background: #f9fafc;
}

.main-title {
  font-size: 40px;
  position: relative;
}

.main-title::after {
  content: "";
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, #009688, #00c6ff);
  display: block;
  margin: 15px auto 0;
}

.philosophy-item {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s forwards;
}

.philosophy-item:nth-child(even) {
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-box {
  padding: 40px;
  border-left: 5px solid #009688;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.content-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.content-box:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0,150,136,0.2);
}

.philosophy-item img {
  transition: 0.4s;
}

.philosophy-item img:hover {
  transform: scale(1.05);
}

.feature-section {
    background: linear-gradient(135deg, #f8f9fc, #eef2ff);
}

/* Card Design */
.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid #eee;
    
    /* New Animation */
    animation: zoomFade 0.8s ease forwards;
    opacity: 0;
    transform: scale(0.9);
}

/* Animation */
@keyframes zoomFade {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover Glow Effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

/* Animated Gradient Border */
.feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4, #9333ea);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.feature-box:hover::before {
    opacity: 1;
}

.icon-box {
    
    position: relative;
}

/* Smooth Continuous Zoom */
.icon-box img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    animation: slowZoom 8s ease-in-out infinite alternate;
}

/* Continuous Soft Zoom */
@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.06);
    }
}

/* Stronger Zoom on Hover */
.feature-box:hover .icon-box img {
    transform: scale(1.12);
}

/* Text */
.feature-box h5 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #0a192f;
}

.feature-box p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-box {
        text-align: center;
    }
    .icon-box {
        margin-bottom: 10px;
    }
}


/*
.services-section{
    background:#f8fafc;
    padding:80px 0;
}
.section-title{
    font-weight:700;
    font-size:38px;
}
.service-card{
    background:#fff;
    border-radius:16px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}
.service-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#0d6efd,#0b5ed7);
    opacity:0;
    transition:.4s;
    z-index:0;
}
.service-card:hover::before{
    opacity:.05;
}
.service-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}
.service-icon{
    width:95px;
    height:95px;
    border:3px solid #0d6efd;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    background:#fff;
    animation:float 4s ease-in-out infinite;
    position:relative;
    z-index:1;
}
.service-icon img{
    max-width:65%;
}
.service-title{
    font-weight:600;
    font-size:18px;
    margin-bottom:0;
    position:relative;
    z-index:1;
}
@keyframes float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-8px); }
}*/

.industries-section {
  background: #0a192f;
  overflow: hidden;
}

.section-title {
  font-weight: 700;
  color: #fff;
  font-size: 32px;
  position: relative;
}

.title-line {
  width: 120px;
  height: 4px;
  background: #fff;
  margin-top: 10px;
  animation: expandLine 1.5s ease forwards;
  margin: auto;
    margin-top: 10px;
}

.section-desc {
  color: #fff;
  font-size: 15px;
  text-align: justify;
}

/* Card Design */
.industry-card {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.industry-card img {
  border-radius: 12px;
  margin-bottom: 15px;
  transition: 0.4s;
}

.industry-card h6 {
  font-weight: 600;
  color: #1e2b4f;
  font-size: 14px;
}

/* Hover Effect */
.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.industry-card:hover img {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 120px; }
}

/* Stagger Animation */
.industry-card:nth-child(1){ animation-delay: .1s;}
.industry-card:nth-child(2){ animation-delay: .2s;}
.industry-card:nth-child(3){ animation-delay: .3s;}
.industry-card:nth-child(4){ animation-delay: .4s;}
.industry-card:nth-child(5){ animation-delay: .5s;}
.industry-card:nth-child(6){ animation-delay: .6s;}
.industry-card:nth-child(7){ animation-delay: .7s;}
.industry-card:nth-child(8){ animation-delay: .8s;}
.industry-card:nth-child(9){ animation-delay: .9s;}
.industry-card:nth-child(10){ animation-delay: 1s;}
.industry-card:nth-child(11){ animation-delay: 1.1s;}
.industry-card:nth-child(12){ animation-delay: 1.2s;}
.industry-card:nth-child(13){ animation-delay: 1.3s;}
.industry-card:nth-child(14){ animation-delay: 1.4s;}


.footer-section {
  background: #f4f6f9;
  color: #0a192f !important;
}

.brand-name {
  font-weight: 700;
  color: #1e2b4f;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  color: #0a192f !important;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #1e2b4f;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.4s;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #0a192f !important;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #1e2b4f;
  padding-left: 5px;
}

.contact-box {
  border: 1px dashed #cbd3e1;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: 0.4s;
}

.contact-box:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.contact-box a {
  color: #0a192f;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

hr {
  margin-top: 20px;
  margin-bottom: 10px;
}
.service-section .section-title{
    color: #0a192f;
}
.service-section .title-line{
    background-color: #0a192f;
}
.service-section .section-desc{
    color: #0a192f;
    opacity: 0.8;
}
.about-sec h2{
    color: #0a192f;
    font-weight: 700;
    font-size: 32px !important;
    position: relative;
}
.section-title .title{
    color: #0a192f;
}
.title-heading .heading {
    font-size: 45px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    /*text-shadow: 2px 2px 10px #000;*/
    font-weight: 500 !important;
}
.about-sec p{
    color: #0a192f !important;
    opacity: 0.8;
    text-align: justify;
}
.about-sec .title-line{
    background-color: #0a192f;
}

.services-modern {
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
  padding: 80px 0;
}

/* Title */


/* Card */
.modern-card {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(40px);
}

/* Same scroll animation as cement section */
.modern-card.show {
  opacity: 1;
  transform: translateY(0);
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Icon */
.modern-icon {
  /* width: 95px; */
  /* height: 95px; */
  margin: 0 auto 25px;
  /* background: linear-gradient(135deg, #1e2b4f, #3a5ba0); */
  /* display: flex; */
  /* align-items: center; */
  justify-content: center;
  transition: 0.4s;
}

.modern-icon img {
  /* width: 50px; */
  /* filter: brightness(0) invert(1); */
  transition: 0.4s;
  width: 40%;
}

.modern-card:hover .modern-icon {
  transform: scale(1.08) rotate(0deg);
}

.modern-card h5 {
  font-weight: 600;
  color: #1e2b4f;
  font-size: 18px;
  margin-bottom: 15px;
}

/* View More Button */
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1e2b4f, #3a5ba0);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.view-btn:hover {
  background: linear-gradient(135deg, #3a5ba0, #1e2b4f);
  box-shadow: 0 8px 20px rgba(58, 91, 160, 0.3);
}

.view-btn:hover span {
  transform: translateX(6px);
}
.services-modern .section-title{
    color: #0a192f;
}
.services-modern .title-underline{
    background:  #0a192f;
    width: 80px;
  height: 4px;
  margin-top: 12px;
}

.premium-services{
    background: linear-gradient(135deg,#f8f9ff,#eef1ff);
    overflow:hidden;
}

.service-block{
    position:relative;
}

.service-content h3{
    font-weight:600;
    margin-bottom:10px;
    color: #0a192f;
    margin-top: 10px;
}
.service-content h6{
    color: #0a192f;
}
.service-blue .service-points span{
    color: #0a192f !important;
}

.service-content p{
    color:#555;
    margin-bottom:10px;
    text-align: justify;
}

.service-number{
    font-size:60px;
    font-weight:800;
    color:rgba(0,123,255,0.08);
    position:absolute;
    top:-10px;
    left:-10px;
}

.service-points span {
    margin-bottom: 10px;
    font-weight: 500;
    display: block;
    color: #0a192f !important;
    font-size: 15px;
}


.glass-card{
    width:100px;
    height:100px;
    margin-bottom: 10px;
  
}


.service-section{
padding:50px 0;
}

.service-blue{background: #0a192f;color:#fff;}

.service-blue p,
.service-blue h3{
color:#fff;
}
.service-blue .service-content h6{
    color: #fff;
}

/*

.service-blue .service-points div:hover{
background:rgba(255,255,255,0.25);
}
*/
.service-number{
font-size:60px;
font-weight:800;
opacity:0.1;
position:absolute;
top:-10px;
left:-10px;
}

.service-content{
position:relative;
}

/*.glass-card{
padding:40px;
background:#fff;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}*/

.service-blue .glass-card{background: #fff;backdrop-filter:blur(10px);}
.mt-50{
    margin-top: 120px !important;
}
.team-card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.3s;
}

.team-card:hover{
transform:translateY(-10px);
}
.team-glass{
background:linear-gradient(135deg,#f5f7ff,#eef2ff);
}

.glass-profile{
background:rgba(255,255,255,0.7);
padding:40px;
border-radius:20px;
backdrop-filter:blur(12px);
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.glass-profile img{
width:150px;
}

.timeline-box{
border-left:4px solid #0d6efd;
padding-left:25px;
font-size:15px;
}

.timeline-box p{
margin-bottom:15px;
}
.transactions-section{
background:#f8f9fc;
}

.transaction-card{
background:#fff;
padding:25px;
border-radius:12px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.35s;
height:350px;
margin: 10px 0;
position: relative;
}

.transaction-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.transaction-img{
height:80px;
display:flex;
align-items:center;
justify-content:center;
}

.transaction-img img{
max-height:70px;
}
#topnav .container{
display:flex;
align-items:center;
justify-content:space-between;
}

#navigation{
margin-left:auto;
}



.team-section p{
    text-align: justify;
}
.team-card p{
    text-align: center;
}
.team-card {
    width: 300px;
    margin: auto;
}
.location-section{
padding:80px 0;
background:#f6f7f9;
}

.city-title{
font-size:70px;
font-weight:700;
color:#0a2b5f;
margin-bottom:20px;
}

.address{
display:flex;
align-items:center;
font-size:16px;
color:#2c3e50;
margin-bottom:40px;
}

.address i{
color:#7fa9d6;
font-size:20px;
}

.contact-title{
font-weight:600;
margin-bottom:20px;
}

.contact-box{
gap:15px;
}

.profile-img{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
}

.contact-info h6{
margin:0;
font-weight:600;
}

.contact-info p{
margin:2px 0;
color:#4b5c6b;
}

.contact-info span{
font-size:14px;
color:#4b5c6b;
}

/* Image Card */

.location-image{
/*background:#dfe9e6;*/
padding:40px;
border-radius:50px;
display:inline-block;
}

.location-image img{
max-width:450px;
}
.service-blu p{
    text-align: justify !important;
}
.team-section p{
    font-size: 15px;
}
.team-section ul li {
    font-size: 15px;
}
h1,h2,h3,h4,h5,h6,p{
    color: #0a192f !important;
}
.service-blue h2{
    color: #fff !important;
}