:root{
    --primary:#FDB913;
    --primary-hover:#e5a50f;
    --dark-blue:#001224;
    --text-dark:#1a1a1a;
    --text-gray:#555555;
    --white:#ffffff;
    --font-heading:'Montserrat', sans-serif;
    --font-body:'Open Sans', sans-serif;
    --transition:all 0.3s ease
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box
}
body{
    font-family:var(--font-body);
    color:var(--text-dark);
    line-height:1.6;
    background-color:#fff;
    overflow-x:hidden
}
a{
    text-decoration:none;
    color:inherit;
    transition:var(--transition)
}
ul{
    list-style:none
}
.container{
    max-width:1300px;
    margin:0 auto;
    padding:0 20px
}
#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#001224 0%,#002244 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    transition:opacity 0.5s ease,visibility 0.5s ease
}
#preloader.fade-out{
    opacity:0;
    visibility:hidden
}
.preloader-content{
    text-align:center;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center
}
.preloader-text{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-top:12px;
    letter-spacing:1px
}
.preloader-logo{
    width:200px;
    height:auto;
    animation:logoFloat 2s ease-in-out infinite;
    filter:drop-shadow(0 10px 30px rgb(253 185 19 / .3))
}
.preloader-spinner{
    width:60px;
    height:60px;
    border:4px solid rgb(253 185 19 / .2);
    border-top:4px solid #FDB913;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:30px auto 0
}
@keyframes logoFloat{
    0%,100%{
        transform:translateY(0)
    }
    50%{
        transform:translateY(-20px)
    }
}
@keyframes spin{
    0%{
        transform:rotate(0deg)
    }
    100%{
        transform:rotate(360deg)
    }
}
.section-padding{
    padding:100px 0
}
/* Section styling */
 .section-fourn-four {
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #f8f9fa;
    /* Light background */
     font-family: 'Arial', sans-serif;
     text-align: center;
     padding: 50px 20px;
}
/* Container */
 .section-fourn-four .about-wrapper-new {
     max-width: 600px;
     width: 100%;
}
/* Headings */
 .section-fourn-four h2 {
     font-size: 36px;
     margin: 10px 0;
     color: #111;
     font-weight: 700;
}
 .section-fourn-four h2 + h2 {
     font-size: 28px;
     color: #555;
}
/* Paragraph */
 .section-fourn-four p {
     font-size: 18px;
     color: #666;
     margin: 20px 0 40px;
}
/* Button */
 .section-fourn-four .btn-service {
     display: inline-flex;
     align-items: center;
     background-color: #ff9f00;
    /* Orange button */
     color: #fff;
     padding: 12px 25px;
     font-size: 16px;
     font-weight: 600;
     border-radius: 6px;
     text-decoration: none;
     transition: 0.3s ease;
}
 .section-fourn-four .btn-service ion-icon {
     margin-left: 8px;
     font-size: 18px;
}
 .section-fourn-four .btn-service:hover {
     background-color: #ffb84d;
     color: #fff;
}
/* Responsive */
 @media (max-width: 768px) {
     .section-fourn-four h2 {
         font-size: 28px;
    }
     .section-fourn-four h2 + h2 {
         font-size: 22px;
    }
     .section-fourn-four p {
         font-size: 16px;
    }
}
 .top-bar{
    background:var(--dark-blue);
    color:rgb(255 255 255 / .8);
    font-size:13px;
    padding:10px 0;
    font-weight:500
}
.top-bar-content{
    display:flex;
    justify-content:space-between;
    align-items:center
}
.contact-info{
    display:flex;
    gap:20px
}
.contact-info span{
    display:flex;
    align-items:center;
    gap:6px
}
.contact-info ion-icon{
    color:var(--primary);
    font-size:14px
}
.social-links{
    display:flex;
    gap:15px
}
.social-links a:hover{
    color:var(--primary)
}
/* ========================= NAVBAR BASE ========================= */
 .navbar{
     background:#fff;
     padding:15px 0;
     position:sticky;
     top:0;
     z-index:1000;
     box-shadow:0 4px 20px rgb(0 0 0 / .05) 
}
 .navbar-content{
     display:flex;
     justify-content:space-between;
     align-items:center 
}
 .logo{
     display:flex;
     align-items:center 
}
 .navbar-brand img{
     height:50px;
     width:auto;
     display:block 
}
/* ========================= MENU ========================= */
 .nav-right-combo{
     display:flex;
     align-items:center;
     gap:40px 
}
 .nav-menu{
     display:flex;
     gap:30px;
     align-items:center;
     list-style:none;
     margin:0;
     padding:0 
}
 .nav-menu li{
     position:relative 
}
 .nav-menu a{
     font-family:var(--font-heading);
     font-size:13px;
     font-weight:700;
     color:var(--text-dark);
     text-decoration:none;
     display:flex;
     align-items:center;
     gap:4px;
     padding:10px 0 
}
 .nav-menu a:hover, .nav-menu a.active{
     color:var(--primary) 
}
/* ========================= DROPDOWN DESKTOP ========================= */
 .dropdown-menu li a{
     padding:10px 20px;
     color:#333;
     font-size:13px;
     font-weight:500;
     display:block;
     white-space:nowrap;
     transition:background .3s ease,color .3s ease 
}
 .dropdown-menu li a:hover{
     background:#f5f5f5;
     color:var(--primary) 
}
 .dropdown ion-icon{
     font-size:14px;
     transition:transform .3s ease 
}
/* ========================= MOBILE FIX (IMPORTANT) ========================= */
/* ========================= DROPDOWN DESKTOP ========================= */
 .dropdown-menu{
     list-style:none;
     position:absolute;
     top:100%;
     left:0;
     min-width:220px;
     background:#fff;
     padding:10px 0;
     margin:0;
     box-shadow:0 10px 30px rgb(0 0 0 / .15);
     border-radius:6px;
     display:none;
     z-index:99999;
}
/* Desktop hover only */
 @media (min-width: 992px){
     .nav-menu .dropdown:hover > .dropdown-menu{
         display:block;
    }
}
/* ========================= MOBILE DROPDOWN (FIXED) ========================= */
 @media (max-width: 991px) {
     .dropdown-menu{
         position:static;
         box-shadow:none;
         padding-left:20px;
         display:none;
         min-width:100%;
    }
     .dropdown.open > .dropdown-menu{
         display:block;
    }

    .dropdown > a ion-icon {
        transition: transform 0.3s ease;
    }
    .dropdown.open > a ion-icon {
        transform: rotate(180deg);
    }
}

 .nav-buttons{
    display:flex;
    align-items:center;
    gap:15px
}
.icon-btn{
    background:none;
    border:none;
    font-size:18px;
    cursor:pointer;
    color:#333
}
 .icon-btn:hover{
    color:var(--primary)
}
 .btn-quote{
    background:linear-gradient(90deg,#FF9A00,#FDB913);
    color:#000!important;
    padding:10px 25px;
     border-radius:4px;
    font-size:12px;
    font-weight:700;
    font-family:var(--font-heading);
     box-shadow:0 4px 15px rgb(253 185 19 / .4)
}
.btn-quote:hover{
    transform:translateY(-2px)
}
 .hero-section{
    position:relative;
    height:90vh;
    min-height:750px;
    background:#000;
    display:flex;
    align-items:center
}
 .hero-bg-single{
    position:absolute;
    inset:0;
    z-index:0
}
.hero-bg-single img{
    width:100%;
    height:100%;
    object-fit:cover
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgb(0 18 36 / .85) 0%,rgb(0 18 36 / .6) 50%,rgb(0 18 36 / .1) 100%);
    z-index:1
}
.hero-container{
    position:relative;
    z-index:2;
    width:100%;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    align-items:center
}
.hero-content{
    color:#fff;
    max-width:700px
}
.badge-pill{
    display:inline-block;
    background:rgb(253 185 19 / .15);
    color:var(--primary);
    border:1px solid var(--primary);
    padding:6px 14px;
    border-radius:4px;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:25px;
    text-shadow:0 2px 4px rgb(0 0 0 / .5)
}
.hero-title{
    font-family:var(--font-heading);
    font-size:clamp(3.5rem, 6vw, 5rem);
    font-weight:900;
    line-height:1.1;
    margin-bottom:25px;
    text-shadow:0 10px 30px rgb(0 0 0 / .6)
}
.text-highlight{
    color:var(--primary)
}
.hero-desc{
    color:#f0f0f0;
    font-size:1.25rem;
    font-weight:600;
    margin-bottom:40px;
    max-width:550px;
    line-height:1.7;
    text-shadow:0 2px 10px rgb(0 0 0 / .5)
}
.btn-group{
    display:flex;
    gap:20px
}
.btn{
    padding:15px 30px;
    border-radius:4px;
    font-weight:700;
    font-family:var(--font-heading);
    font-size:14px
}
.btn-primary{
    background:var(--primary);
    color:#000;
    box-shadow:0 5px 20px rgb(253 185 19 / .3)
}
.btn-primary:hover{
    border-color:#fff;
    background:#fff;
    color:var(--dark-blue)
}
.btn-outline{
    border:2px solid rgb(255 255 255 / .4);
    color:#fff
}
.btn-outline:hover{
    border-color:#fff;
    background:#fff;
    color:var(--dark-blue)
}
.experience-card{
    background:rgb(255 255 255 / .1);
    backdrop-filter:blur(10px);
    border:1px solid rgb(255 255 255 / .1);
    padding:30px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:20px;
    max-width:400px;
    justify-self:end;
    margin-top:100px
}
.badge-icon{
    font-size:40px;
    color:var(--primary);
    background:rgb(253 185 19 / .2);
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center
}
.exp-text{
    color:#fff
}
.exp-label{
    display:block;
    font-size:12px;
    opacity:.8;
    margin-bottom:5px
}
.exp-years{
    display:block;
    font-size:24px;
    font-weight:800;
    font-family:var(--font-heading);
    margin-bottom:5px
}
.exp-desc{
    font-size:12px;
    opacity:.6;
    line-height:1.4
}
.features-overlap{
    padding-bottom:80px;
    position:relative;
    margin-top:-50px;
    z-index:10
}
.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative
}
.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    box-shadow:0 10px 40px rgb(0 0 0 / .08);
    transition:var(--transition)
}
.feature-card:hover{
    transform:translateY(-10px)
}
.card-icon-box{
    width:50px;
    height:50px;
    background:#fff8e6;
    border-radius:8px;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:20px
}
.feature-card h3{
    font-family:var(--font-heading);
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
    color:var(--text-dark)
}
.feature-card p{
    font-size:14px;
    color:var(--text-gray);
    margin-bottom:20px;
    line-height:1.6
}
.feature-card .list{
    list-style:none;
    padding:0;
    margin:0
}
.feature-card .list li{
    position:relative;
    padding-left:22px;
    margin-bottom:10px;
    font-size:14px;
    color:var(--text-gray);
    line-height:1.6
}
.feature-card .list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:var(--primary);
    font-size:13px;
    font-weight:700
}
.learn-more{
    font-size:13px;
    font-weight:700;
    color:var(--primary);
    display:inline-flex;
    align-items:center
}
.learn-more:hover{
    text-decoration:underline
}
.about-section{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden
}
.about-section::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgb(253 185 19 / .05) 0%,transparent 70%);
    z-index:0
}
.about-wrapper-new{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:1
}
.about-image-professional{
    position:relative;
    padding:20px
}
.about-img-group{
    position:relative;
    border-radius:20px;
    box-shadow:0 20px 50px rgb(0 0 0 / .15)
}
.main-about-img{
    width:100%;
    border-radius:20px;
    display:block;
    object-fit:cover;
    height:550px;
    transition:transform 0.5s ease
}
.about-img-group:hover .main-about-img{
    transform:scale(1.02)
}
.floating-badge-years{
    position:absolute;
    bottom:40px;
    right:-30px;
    background:#fff;
    padding:25px 35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgb(0 0 0 / .15);
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    border-left:5px solid var(--primary);
    animation:float 4s ease-in-out infinite
}
@keyframes float{
    0%,100%{
        transform:translateY(0)
    }
    50%{
        transform:translateY(-10px)
    }
}
.fb-number{
    font-size:3rem;
    font-weight:800;
    font-family:var(--font-heading);
    color:var(--primary);
    line-height:1;
    margin-bottom:5px
}
.fb-text{
    font-size:.9rem;
    font-weight:700;
    color:var(--dark-blue);
    line-height:1.2;
    text-transform:uppercase;
    letter-spacing:1px
}
.about-content-pro{
    padding-left:20px
}
.pro-tag{
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
    margin-bottom:15px
}
.pro-title{
    font-family:var(--font-heading);
    font-size:3.5rem;
    font-weight:800;
    color:var(--dark-blue);
    line-height:1.1;
    margin-bottom:20px
}
.title-underline{
    width:80px;
    height:5px;
    background:var(--primary);
    margin-bottom:35px;
    border-radius:3px
}
.pro-desc-main{
    font-size:1.1rem;
    color:#555;
    line-height:1.7;
    margin-bottom:40px
}
.pro-subtitle{
    font-family:var(--font-heading);
    font-size:1.6rem;
    font-weight:700;
    color:var(--dark-blue);
    margin-bottom:15px
}
.pro-desc-sub{
    font-size:1rem;
    color:#666;
    margin-bottom:35px
}
.pillars-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:30px
}
.pillar-item{
    background:#fdfdfd;
    padding:20px;
    border-radius:12px;
    border-left:4px solid var(--primary);
    box-shadow:0 5px 15px rgb(0 0 0 / .03);
    transition:var(--transition)
}
.pillar-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgb(0 0 0 / .08)
}
.pillar-item h4{
    font-family:var(--font-heading);
    font-size:1.1rem;
    font-weight:700;
    color:var(--dark-blue);
    margin-bottom:8px
}
.pillar-item p{
    font-size:.9rem;
    color:#666;
    line-height:1.5
}
.mission-vision-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:40px
}
.mv-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgb(0 0 0 / .05);
    display:flex;
    align-items:flex-start;
    gap:20px;
    transition:var(--transition);
    border:1px solid #f0f0f0
}
.mv-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgb(0 0 0 / .1);
    border-color:var(--primary)
}
.mv-icon{
    background:rgb(253 185 19 / .1);
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}
.mv-icon ion-icon{
    font-size:30px;
    color:var(--primary)
}
.mv-text h4{
    font-family:var(--font-heading);
    font-size:1.25rem;
    font-weight:700;
    color:var(--dark-blue);
    margin-bottom:10px
}
.mv-text p{
    font-size:.95rem;
    color:var(--text-gray);
    line-height:1.6
}
.products-portfolio{
    padding:100px 0;
    background:#fcfcfc
}
.section-header-centered{
    text-align:center;
    margin-bottom:60px
}
.title-underline-centered{
    width:80px;
    height:5px;
    background:var(--primary);
    margin:0 auto;
    border-radius:3px
}
.portfolio-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center
}
.portfolio-image{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgb(0 0 0 / .1)
}
.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.5s ease
}
.portfolio-image:hover img{
    transform:scale(1.05)
}
.portfolio-list-wrapper{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgb(0 0 0 / .05)
}
.portfolio-list{
    display:flex;
    flex-direction:column
}
.portfolio-list li{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 0;
    border-bottom:1px solid #f0f0f0;
    transition:var(--transition)
}
.portfolio-list li:last-child{
    border-bottom:none
}
.portfolio-list li ion-icon{
    font-size:24px;
    color:var(--primary)
}
.portfolio-list li a{
    text-decoration:none;
    color:inherit;
    display:flex;
    align-items:center;
    gap:15px;
    width:100%
}
.portfolio-list li a:hover span{
    color:var(--primary)
}
.portfolio-list li span{
    font-size:1.1rem;
    font-weight:600;
    color:var(--text-dark);
    font-family:var(--font-heading);
    transition:var(--transition)
}
.portfolio-list li:hover{
    padding-left:10px
}
.cta-banner{
    position:relative;
    padding:120px 0;
     background:url(https://masterduct.ae/assets/images/cta_industrial_bg_1766468093436.webp) no-repeat center center/cover;
    background-attachment:fixed;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden
}
.cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgb(0 18 36 / .9) 0%,rgb(0 18 36 / .7) 100%);
    z-index:1
}
.cta-container{
    position:relative;
    z-index:2
}
.cta-content{
    max-width:800px;
    margin:0 auto
}
.cta-subtitle{
    display:block;
    color:var(--primary);
    font-size:1.1rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px
}
.cta-title{
    font-family:var(--font-heading);
    font-size:clamp(2.5rem, 5vw, 3.5rem);
    font-weight:800;
    line-height:1.2;
    margin-bottom:40px;
    text-shadow:0 5px 15px rgb(0 0 0 / .3)
}
.btn-cta{
    padding:18px 40px;
    font-size:16px;
    border-radius:50px;
    box-shadow:0 10px 30px rgb(253 185 19 / .4)
}
.page-banner{
    background:var(--dark-blue);
    padding:100px 0;
    text-align:center;
    color:#fff;
    position:relative;
    background-attachment:fixed!important;
    overflow:hidden
}
.banner-container{
    position:relative;
    z-index:2
}
.banner-title{
    font-family:var(--font-heading);
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:10px;
    color:#fff
}
.breadcrumbs{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
    font-weight:600;
    color:rgb(255 255 255 / .7);
    font-family:var(--font-heading)
}
.breadcrumbs a{
    color:var(--primary)
}
.breadcrumbs ion-icon{
    font-size:12px
}
.footer{
    background:var(--dark-blue);
    padding:80px 0 30px;
    color:#fff;
    margin-top:0
}
.footer-content{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:50px;
    margin-bottom:60px
}
.footer-logo{
    font-family:var(--font-heading);
    font-weight:700;
    font-size:20px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:5px
}
.logo-icon-sm{
    color:var(--primary)
}
.footer-desc{
    color:rgb(255 255 255 / .6);
    font-size:14px;
    line-height:1.6;
    margin-bottom:25px
}
.social-mini{
    display:flex;
    gap:15px
}
.social-mini a{
    background:rgb(255 255 255 / .1);
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:14px
}
.social-mini a:hover{
    background:var(--primary)
}
.footer-col h4{
    color:#fff;
    margin-bottom:25px;
    font-family:var(--font-heading)
}
.footer-links li,.footer-contact li{
    margin-bottom:15px;
    font-size:14px;
    color:rgb(255 255 255 / .6);
    transition:color 0.3s ease
}
.footer-links li:hover,.footer-contact li:hover{
    color:#FDB913
}
.footer-contact li{
    display:flex;
    gap:10px;
    align-items:flex-start
}
.footer-contact ion-icon{
    color:var(--primary);
    margin-top:3px
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 120px; /* padding top & sides */
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;               /* make flex container */
    justify-content: space-between; /* push items to left & right */
    align-items: center;         /* vertically center text */
    flex-wrap: wrap;             /* responsive wrap if needed */
}

.footer-bottom p {
    margin: 0; /* remove default margins from p */
}

.footer-right a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}



.assets-section{
    padding:100px 0;
    background:#fdfdfd;
    position:relative;
    overflow:hidden
}
.assets-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:radial-gradient(var(--primary) .5px,transparent .5px);
    background-size:30px 30px;
    opacity:.03;
    pointer-events:none
}
.assets-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:50px
}
.asset-item{
    background:#fff;
    padding:25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 10px 25px rgb(0 0 0 / .03);
    border:1px solid #f0f0f0;
    transition:all 0.4s cubic-bezier(.165,.84,.44,1);
    position:relative;
    overflow:hidden
}
.asset-item::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    height:3px;
    width:0;
    background:var(--primary);
    transition:width 0.3s ease
}
.asset-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgb(0 0 0 / .08);
    border-color:rgb(253 185 19 / .3)
}
.asset-item:hover::after{
    width:100%
}
.asset-icon-box{
    width:55px;
    height:55px;
    background:rgb(253 185 19 / .1);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:all 0.3s ease
}
.asset-item:hover .asset-icon-box{
    background:var(--primary);
    transform:rotate(10deg)
}
.asset-icon-box ion-icon{
    font-size:26px;
    color:var(--primary);
    transition:color 0.3s ease
}
.asset-item:hover .asset-icon-box ion-icon{
    color:#fff
}
.asset-name{
    font-weight:700;
    font-family:var(--font-heading);
    color:var(--dark-blue);
    font-size:1.05rem;
    line-height:1.3
}
.assets-table{
    width:100%;
    border-collapse:collapse;
    margin-top:40px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 40px rgb(0 0 0 / .05);
    border:2px solid #fdb913;
    outline:2px solid #fdb913;
    outline-offset:-2px
}
.assets-table thead{
    background:linear-gradient(135deg,#001224 0%,#002244 100%)
}
.assets-table thead th{
    padding:20px 15px;
    text-align:left;
    color:#fff;
    font-weight:700;
    font-family:var(--font-heading);
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:.5px;
    border-right:1.5px solid #fdb913
}
.assets-table thead th:last-child{
    border-right:none
}
.assets-table tbody tr{
    border-bottom:1.5px solid #fdb913;
    transition:background 0.3s ease
}
.assets-table tbody tr:hover{
    background:#fafafa
}
.assets-table tbody tr:last-child{
    border-bottom:none
}
.assets-table tbody td{
    padding:18px 15px;
    color:var(--text-dark);
    font-size:.95rem;
    font-weight:500;
    border-right:1.5px solid #fdb913
}
.assets-table tbody td:last-child{
    border-right:none
}
.assets-table tbody tr:nth-child(even){
    background:#f9f9f9
}
.assets-table tbody tr:nth-child(even):hover{
    background:#f5f5f5
}
@media (max-width:768px){
    .assets-table{
        font-size:.85rem
    }
    .assets-table thead th,.assets-table tbody td{
        padding:12px 8px;
        font-size:.85rem
    }
}


/* Target only the last row */
.assets-table tbody tr.last-row td {
    background-color: #f9f9f9; /* example background */
    text-align: center;        /* optional, center text */
    border-right: 1.5px solid #fdb913; /* add border for consistency */
}

/* Remove border from the actual last cell of the last row */
.assets-table tbody tr.last-row td:last-child {
    border-right: none;
}






.service-sidebar{
    background:#fff;
    border:1px solid #f0f0f0;
    border-radius:12px;
    box-shadow:0 15px 40px rgb(0 0 0 / .04);
    overflow:hidden;
    position:sticky;
    top:120px
}
.service-list-widget ul{
    list-style:none;
    padding:0;
    margin:0
}
.service-list-widget ul li{
    border-bottom:1px solid #f1f1f1
}
.service-list-widget ul li:last-child{
    border-bottom:none
}
.service-list-widget ul li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 25px;
    color:#444;
    font-weight:700;
    font-family:var(--font-heading);
    font-size:1rem;
    transition:all 0.3s cubic-bezier(.4,0,.2,1);
    text-decoration:none;
    border-left:5px solid #fff0;
    letter-spacing:-.01em;
    position:relative
}
.service-list-widget ul li a::after{
    content:'→';
    font-size:1.2rem;
    opacity:0;
    transform:translateX(-10px);
    transition:all 0.3s ease;
    color:var(--primary)
}
.service-list-widget ul li.current a{
    color:var(--primary);
    background:rgb(253 185 19 / .03);
    border-left-color:var(--primary)
}
.service-list-widget ul li.current a::after{
    opacity:1;
    transform:translateX(0)
}
.service-list-widget ul li a:hover{
    color:var(--primary);
    background:#fcfcfc;
    padding-left:30px
}
.service-list-widget ul li a:hover::after{
    opacity:1;
    transform:translateX(0)
}
.download-widget{
    margin-top:30px;
    background:linear-gradient(90deg,#FF9A00,#FDB913);
    padding:20px 25px;
    border-radius:4px;
    transition:var(--transition);
    box-shadow:0 4px 15px rgb(253 185 19 / .3)
}
.download-widget li a{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff!important;
    text-decoration:none
}
.download-widget .download-icon{
    width:45px;
    height:45px;
    background:rgb(255 255 255 / .15);
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:var(--transition)
}
.download-widget li a span{
    display:block
}
.download-widget .download-title{
    font-size:14px;
    font-weight:700;
    font-family:var(--font-heading);
    color:#fff;
    margin-bottom:2px
}
.download-widget .download-sub{
    font-size:11px;
    opacity:.6;
    font-weight:500
}
.download-widget:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgb(253 185 19 / .4)
}
.download-widget:hover .download-icon{
    background:#fff;
    color:#FF9A00
}
.service-single-content{
    padding-left:30px
}
.service-single-content h2{
    color:var(--dark-blue);
    font-weight:800;
    margin:0 0 30px;
    font-size:2.2rem;
    letter-spacing:-.02em
}
.service-single-img-holder{
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
    box-shadow:0 20px 50px rgb(0 0 0 / .08)
}
.service-single-img-holder img{
    width:100%;
    height:auto;
    display:block
}
.service-single-content p{
    line-height:1.8;
    color:#4b5563;
    font-size:1.05rem;
    margin-bottom:25px
}
.btn-service{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(90deg,#FF9A00,#FDB913);
    color:#fff!important;
    padding:12px 30px;
    border-radius:4px;
    font-weight:700;
    font-family:var(--font-heading);
    transition:var(--transition);
    font-size:13px;
    box-shadow:0 4px 15px rgb(253 185 19 / .3)
}
.btn-service:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgb(253 185 19 / .4);
    color:#fff!important
}
.btn-service ion-icon{
    font-size:1.2rem
}
.product-details-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:50px;
    align-items:flex-start;
    padding-top:40px
}
.service-sidebar-col{
    flex:0 0 320px;
    min-width:280px
}
.service-content-col{
    flex:1;
    min-width:300px
}
@media (max-width:991px){
    .product-details-wrap{
        flex-direction:column;
        gap:40px
    }
    .service-sidebar{
        flex:1 1 100%!important;
        width:100%;
        position:static;
        margin-bottom:20px
    }
    .service-single-content{
        padding-left:0
    }
}
.contact-modern-section{
    background:#fdfdfd
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:stretch
}
.contact-info-column{
    display:flex;
    flex-direction:column
}
.info-intro{
    margin-bottom:50px;
    text-align:left
}
.info-intro p{
    color:var(--text-gray);
    font-size:1.1rem;
    max-width:100%;
    margin:0
}
.info-intro .sub-title{
    color:var(--primary);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    display:block;
    margin-bottom:10px
}
.info-intro .main-title{
    font-family:var(--font-heading);
    font-size:2.8rem;
    color:var(--dark-blue);
    font-weight:900;
    line-height:1.2;
    margin-bottom:20px
}
.info-intro .main-title span{
    color:var(--primary)
}
.info-card-wrap{
    display:grid;
    gap:20px
}
.info-item-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 10px 30px rgb(0 0 0 / .05);
    border:1px solid #f5f5f5;
    transition:var(--transition)
}
.info-item-card:hover{
    transform:translateX(10px);
    border-color:var(--primary)
}
.info-item-card .icon-box{
    width:60px;
    height:60px;
    background:rgb(253 185 19 / .1);
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0
}
.info-text h4{
    font-family:var(--font-heading);
    font-size:1.1rem;
    color:var(--dark-blue);
    margin-bottom:5px;
    font-weight:700
}
.info-text p,.info-text a{
    color:var(--text-gray);
    font-size:14px;
    display:block
}
.info-text a:hover{
    color:var(--primary)
}
.form-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 20px 60px rgb(0 0 0 / .1);
    border:1px solid #f0f0f0
}
.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px
}
.form-group{
    flex:1
}
.form-group.full{
    width:100%
}
.modern-contact-form .form-control{
    width:100%;
    background:#f9fafb;
    border:1px solid #e5e7eb;
    padding:15px 20px;
    border-radius:8px;
    font-family:var(--font-body);
    font-size:14px;
    color:var(--text-dark);
    transition:var(--transition)
}
.modern-contact-form .form-control:focus{
    outline:none;
    background:#fff;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgb(253 185 19 / .1)
}
.modern-contact-form textarea.form-control{
    height:150px;
    resize:none
}
.form-submit{
    margin-top:30px
}
.premium-btn{
    background:var(--dark-blue);
    color:#fff;
    border:none;
    padding:18px 40px;
    border-radius:50px;
    font-weight:700;
    font-family:var(--font-heading);
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:var(--transition);
    width:100%;
    justify-content:center;
    font-size:15px
}
.premium-btn:hover{
    background:var(--primary);
    color:var(--dark-blue);
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgb(253 185 19 / .3)
}
.premium-btn ion-icon{
    font-size:1.2rem
}
@media (max-width:991px){
    .top-bar-content{
        flex-direction:column;
        gap:10px;
        text-align:center
    }
    .contact-info{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px 20px
    }
    .nav-right-combo{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:100px 30px;
        gap:30px;
        transition:0.4s ease-in-out;
        box-shadow:-10px 0 30px rgb(0 0 0 / .1);
        z-index:2000
    }
    .nav-right-combo.active{
        right:0
    }
    .nav-menu{
        flex-direction:column;
        align-items:flex-start;
        width:100%;
        gap:20px
    }
    .nav-menu li{
        width:100%
    }
    .nav-menu a{
        font-size:16px;
        padding:10px 0;
        width:100%
    }
    .dropdown-menu{
        position:static;
        box-shadow:none;
        padding:0 0 0 20px;
        display:none;
        min-width:100%
    }
    
    .hamburger{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
        position:relative;
        z-index:2001
    }
    .hamburger span{
        width:28px;
        height:3px;
        background:var(--dark-blue);
        border-radius:2px;
        transition:0.3s cubic-bezier(.68,-.6,.32,1.6)
    }
    .hamburger.active span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
        width:28px
    }
    .hamburger.active span:nth-child(2){
        opacity:0
    }
    .hamburger.active span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
        width:28px
    }
    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:40px
    }
    .hero-content{
        margin:0 auto
    }
    .btn-group{
        justify-content:center
    }
    .experience-card{
        margin-top:20px;
        justify-self:center;
        max-width:100%;
        width:100%
    }
    .features-grid{
        grid-template-columns:repeat(2,1fr)
    }
    .about-wrapper-new{
        grid-template-columns:1fr;
        gap:50px
    }
    .about-content-pro{
        padding-left:0
    }
    .portfolio-grid{
        grid-template-columns:1fr;
        gap:40px
    }
    .footer-content{
        grid-template-columns:1fr 1fr
    }
    .contact-grid{
        grid-template-columns:1fr;
        gap:50px
    }
    .mission-vision-wrapper{
        grid-template-columns:1fr
    }
}
@media (max-width:768px){
    .features-grid{
        grid-template-columns:1fr
    }
    .pro-title{
        font-size:2.2rem
    }
    .pillars-grid{
        grid-template-columns:1fr
    }
    .floating-badge-years{
        right:10px;
        bottom:10px;
        padding:15px 20px;
        transform:scale(.8)
    }
    .footer-content{
        grid-template-columns:1fr;
        text-align:center
    }
    .footer-links li,.footer-contact li{
        justify-content:center
    }
    .social-mini{
        justify-content:center
    }
    .cta-title{
        font-size:1.8rem
    }
    .form-card{
        padding:30px 20px
    }
    .info-intro .main-title{
        font-size:2rem
    }
    .form-row{
        flex-direction:column;
        gap:0
    }
}
@media (max-width:576px){
    .hero-title{
        font-size:2.4rem
    }
    .hero-desc{
        font-size:1.1rem
    }
    .btn-group{
        flex-direction:column;
        width:100%
    }
    .btn{
        width:100%;
        text-align:center
    }
    .main-about-img{
        height:400px
    }
}
.mt-30{
    margin-top:30px
}
.mt-80{
    margin-top:80px
}
.info-map-card{
    background:#fff;
    padding:10px;
    border-radius:15px;
    box-shadow:0 10px 30px rgb(0 0 0 / .05);
    border:1px solid #f5f5f5;
    overflow:hidden;
    flex-grow:1
}
.map-inner,.map-inner iframe{
    height:100%
}
.map-inner{
    line-height:0;
    border-radius:10px;
    overflow:hidden
}
@media (max-width:768px){
    .mt-80{
        margin-top:50px
    }
}
.page-banner{
    padding:120px 0;
    position:relative;
    overflow:hidden;
    text-align:center
}
.banner-title{
    font-size:clamp(2.5rem, 5vw, 4rem);
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
    font-family:var(--font-heading);
    text-shadow:0 5px 15px rgb(0 0 0 / .3)
}
.breadcrumbs{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:rgb(255 255 255 / .8);
    font-size:14px;
    font-weight:600
}
 .breadcrumbs a{
    color:var(--primary)
}
.breadcrumbs ion-icon{
    font-size:16px;
    color:var(--primary)
}
@media (max-width:768px){
    .page-banner{
        padding:80px 0
    }
    .banner-title{
        font-size:2.2rem
    }
}
