/*
Theme Name: Lumnary Tech Solutions
Theme URI: http://lumnaryhire.com/
Author: Lumnary Tech Solutions
Author URI: http://lumnaryhire.com/
Version: 1.0
*/

/* Global Variables */
        :root{
            --primary-blue:#062567;
            --gold:#d29a35;
            --grey:#f8f9fc;
        }

        body{
             font-family: "Lato", sans-serif;
        }

        a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.section-padding{
padding:70px 0;
}


.grey-bg{
background:var(--grey);

}


.text-gold{
    color: var(--gold) !important;
}


.btn-primary{
        transition: .3s;
    border: none;
     align-items: center;
    display: inline-flex;
    --btn-padding: 10px 25px;
    background:var(--primary-blue);  
         color: var(--bs-white);
          padding: var(--btn-padding);
          border-radius: 5px;
          font-weight: 600;
          font-size: 0.9rem;
       
}
.btn-primary:hover{
       background:var(--gold);  
        color: var(--bs-white);
}

.btn-secondary{
        transition: .3s;
    border: none;
     align-items: center;
    display: inline-flex;

    --btn-padding: 10px 25px;
    background:var(--gold); 
    color: var(--bs-white);
          font-weight: 600;
        padding: var(--btn-padding);
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-secondary:hover{
    background:var(--primary-blue);  
   
}


        .site-header{
            background:#fff;
            border-bottom:1px solid #e5e5e5;
            padding:0;
        }

        .custom-logo-link img{
            max-height:75px;
            width:auto;
        }
/*==============================
Navigation
==============================*/

.navbar-nav{
    gap:8px;
}

.navbar-nav .nav-item{
    position:relative;
}

.navbar-nav .nav-link{
    display:flex;
    align-items:center;
    color:var(--primary-blue);
    font-size:.95rem;
    font-weight:600;
    padding:1rem;
    text-transform:uppercase;
    letter-spacing:.03rem;
    text-decoration:none;
    transition:all .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--gold);
}

/* Dropdown Icon */

.navbar-nav .dropdown-toggle::after{
    border:none;
    content:"";
    width:12px;
    height:12px;
    margin-left:8px;
    background-repeat:no-repeat;
    background-position:center;
    background-size:12px;
    transition:.3s;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23444'%3E%3Cpath d='M256 429.3l22.6-22.6 192-192L493.3 192 448 146.7l-22.6 22.6L256 338.7 86.6 169.4 64 146.7 18.7 192l22.6 22.6 192 192L256 429.3z'/%3E%3C/svg%3E");
}

.navbar-nav .dropdown:hover>.dropdown-toggle::after{
    transform:rotate(180deg);
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23C9A227'%3E%3Cpath d='M256 429.3l22.6-22.6 192-192L493.3 192 448 146.7l-22.6 22.6L256 338.7 86.6 169.4 64 146.7 18.7 192l22.6 22.6 192 192L256 429.3z'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link.active.dropdown-toggle::after{
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23C9A227'%3E%3Cpath d='M256 429.3l22.6-22.6 192-192L493.3 192 448 146.7l-22.6 22.6L256 338.7 86.6 169.4 64 146.7 18.7 192l22.6 22.6 192 192L256 429.3z'/%3E%3C/svg%3E");
}

/* Dropdown Menu */

.navbar-nav .dropdown-menu{

    display:block;

    position:absolute;
    top:100%;
    left:0;

    min-width:260px;

    padding:12px 0;
    margin-top:0;

    border:none;
    border-radius:10px;

    background:#fff;

    box-shadow: 0 5px 20px rgb(0 0 0 / 15%);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    pointer-events:none;

}

/* Show */

.navbar-nav .dropdown:hover>.dropdown-menu{

    opacity:1;
    visibility:visible;
    transform:translateY(-4px);

    pointer-events:auto;

}
.navbar-nav .dropdown:hover a.nav-link{
    color: var(--gold);
}

/* Dropdown Items */

.navbar-nav .dropdown-item{

display: flex;
    align-items: center;
    padding: 7px 22px;
    font-weight: 500;
    color: #444;
    transition: all .3s ease;

}

.navbar-nav .dropdown-item:hover{

    background:#f7f8fb;
    color:var(--gold);

    padding-left:28px;

}

/* Active */

.navbar-nav .dropdown-item.active{
    background:transparent;
    color:var(--gold);
}

        .btn-register{
color:#fff;
    padding: 8px 28px;

        }

        .btn-register:hover{
            background:#001b57;
            color:#fff;
        }

        .btn-job{

    padding: 8px 28px;

        }

        .btn-job:hover{
            background:#be8829;
            color:#fff;
        }


        .hero-slider{
    height:90vh;
}

.hero-slider .swiper-slide{
    position:relative;
    height:90vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-slider .slide-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    z-index:1;
}

.hero-slider .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:3;
    color:#fff;
    max-width:900px;
}

.hero-content h2{
    font-size:5rem;
    line-height:1;
    font-weight:700;
    margin-bottom:20px;
}

.hero-outline{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.hero-arrow{
    width:120px;
    height:120px;
}

.hero-outline-text{
    font-size:8rem;
    line-height:1;
    font-weight:700;
    color:transparent;
    -webkit-text-stroke:2px #fff;
}

.hero-content p{
    font-size:1.8rem;
    max-width:700px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.btn-consult{
padding: 16px 35px;
    font-size: 1.1rem;
    border-radius: 7px;

}

.btn-consult:hover{
    background:var(--primary-blue);
    color:var(--gold);
}

.btn-discover{
    color:#fff;
    font-size:1.3rem;
    font-weight:600;
    text-decoration:none;
}

.btn-discover:hover{
    color:#fff;
}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet{
    background:#fff;
}




.about-images{
    display:flex;
    gap:30px;
}

.left-column,
.right-column{
    display:flex;
    flex-direction:column;
}

.left-column{
    width:48%;
}

.right-column{
    width:48%;
}

.img-top{
    height: 315px;
    object-fit:cover;
    margin-bottom:20px;
}

.img-bottom{
    height:245px;
    object-fit:cover;
}

.experience-box{
background: #0d2b73;
    color: #fff;
    border-radius: 12px;
    padding: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.experience-number{
    font-size:90px;
    font-weight:700;
    line-height:1;
    color:transparent;
    -webkit-text-stroke:2px #fff;
}

.experience-text{
    font-size:24px;
    font-weight:600;
    line-height:1.3;
}

.img-large{
height: 350px;
    object-fit: cover;
}





.about-content p{
    color: #5f5f5f;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 35px;
}

.feature-box{
background: #ececec;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.feature-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-box li{
position: relative;
    padding-left: 20px;
    margin-bottom: 13px;
    color: var(--primary-blue);
    font-size: 18px;
}

.feature-box li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    font-weight:700;
}

.contact-info{
    display:flex;
    gap:70px;
    flex-wrap:wrap;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:20px;
}

.icon-circle{
    width:80px;
    height:80px;
    background:#0d2b73;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-circle i{
    color:#fff;
    font-size:28px;
}

.contact-item h6{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.contact-item p{
    margin:0;
    font-size:18px;
    color:#0d2b73;
    line-height:1.4;
}

.contact-form-wrapper .btn-secondary{
    --btn-padding:15px 30px;

}


/* css for services section */

.service-card{
    position:relative;
    height:500px;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(9,34,82,.65);
    transition:.4s;
}


.service-content{
    position:absolute;
    inset:0;
    z-index:2;
    color:#fff;
    padding:70px 40px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.service-number{
    display:block;
    font-size:18px;
    margin-bottom:15px;
    font-weight:500;
}

.service-content h3{
    font-size:2.3rem;
    line-height:1.05;
    font-weight:700;
}

.hover-content{
    opacity:0;
    visibility:hidden;
    transform:translateY(60px);
    transition:.5s;
}

.hover-content p{
    font-size:20px;
    line-height:1.5;
    margin-bottom:35px;
    max-width:300px;
}

.service-arrow{
    width:60px;
    height:60px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    transition:.3s;
}

.service-arrow:hover{
    background:#fff;
    color:#0d2b73;
}

.service-card:hover img{
    transform:scale(1.12);
}

.service-card:hover .overlay{
    background:linear-gradient(
        to bottom,
        rgba(13,43,115,.55),
        rgba(24,73,185,.88)
    );
}

.service-card:hover .hover-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* css for latest jobs section */



.section-heading h2{
     font-size: 45px;
    font-weight: 700;
}

.job-card{
background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: .35s;
    height: 100%;
    position: relative;
}

.job-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.job-logo img{
    width:90px;
    height:90px;
    border-radius:10px;
    object-fit:cover;
}

.job-content{
    flex:1;
}

.job-tag{
    background:#4c6fff;
color: #fff;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.job-content h3 {
font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.job-meta{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-meta li{
color: #666;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta i{
    color:#4c6fff;
}

.job-date{
    color: #818181;
    font-size: 14px;
    white-space: nowrap;
    position: absolute;
    right: 15px;
    top: 7px;
}

/* css for latest jobs section ends here */

/* css for industries section */
.specialized-industries{
    background:var(--primary-blue);
}

.section-subtitle{
    color:#d79b2d;
    font-size:18px;
    font-weight:600;
    letter-spacing:1px;
    display:block;
    margin-bottom:20px;
}


.specialized-industries .section-title{
    color:#fff;
    font-size:4rem;

}




.specialized-industries .section-subtitle, .specialized-industries .section-title span{
    color:var(--gold);

}

.industry-item{
    display:flex;
    align-items:flex-start;
    gap:25px;
    transition:.3s;
}

.industry-icon{
    min-width:50px;
    font-size:3rem;
    color:#d79b2d;
    line-height:1;
}

.industry-item h4{
    color:#fff;
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:5px;
}

.industry-item p{
    color:rgba(255,255,255,.85);
    margin:0;
}

.industry-item:hover{
    transform:translateX(8px);
}

/* css for featured companies section */



.company-box{
      background: #fff;
    border-radius: 7px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-decoration: none;
    border: 1px solid #ececec;
    transition:.35s ease;
}

.company-box img{
    max-width:100%;
    max-height:55px;
    object-fit:contain;
    transition:.35s ease;
}

.company-box:hover{
    border-color:#d79b2d;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.company-box:hover img{
    filter:none;
}

.featured-company .btn-secondary{
    --btn-padding:15px 30px;
}



/* css for blogs  */





.section-title{
    font-size:3rem;
    font-weight:800;
    line-height:1.1;
    color:#222;
}

.section-title span{
    color:var(--primary-blue);
}

.featured-post{
    height:100%;
}

.featured-image{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}



.featured-image img{
    width:100%;
    height:400px;
    object-fit:cover;
    transition:.6s;
}

.featured-post:hover img{
    transform:scale(1.05);
}

.featured-content{
    padding-top:25px;
}

.blog-tag{
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 1px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.featured-content h3{
font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 7px;
}

.featured-content p{
    font-size:1.1rem;
    line-height:1.4;
}

.blog-item{
display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom:15px;
    border-bottom: 1px solid #e6e6e6;
}

.blog-thumb{
    flex: 0 0 270px;
    overflow: hidden;
    border-radius: 7px;
}

.blog-thumb img{
    width:100%;
    height: 160px;
    object-fit:cover;
    transition:.5s;
}

.blog-item:hover img{
    transform:scale(1.08);
}

.blog-info h4{
    font-size:1.3rem;
    font-weight:700;
    line-height:1.35;
    margin:0;
    transition:.3s;
}

.blog-item:hover h4{
    color:var(--primary-blue);
}


/* css for contact us  */

.contact-section{
    overflow:hidden;
}

/* LEFT SIDE */

.contact-banner{
    position:relative;
    min-height:700px;
}

.contact-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.banner-content{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:2;
    padding:40px;
}

.banner-content h2{
    color:#fff;
    font-size:4rem;
    font-weight:700;
    margin-bottom:30px;
}

.banner-content p{
color: #fff;
    max-width: 700px;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* RIGHT SIDE */

.contact-form-wrapper{
    background:#000;
    color:#fff;
    min-height:700px;
    padding:80px 70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.section-subtitle{
    color:var(--gold);
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.contact-form-wrapper h2{
    color:var(--gold);
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
}

.form-desc{
    color:#d9d9d9;
    font-size:1.2rem;
    margin-bottom:50px;
}

.form-group-icon{
    position:relative;
}

.form-group-icon i{
  position: absolute;
    left: 0;
    top: 12px;
    color: #fff;
    font-size: 1.2rem;
}

.form-control{
    background:transparent;
border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    border-radius: 0;
    padding: 12px 0 12px 30px;
    color: #fff;
    font-size: 16px;
}

.form-control:focus{
    background:transparent;
    box-shadow:none;
    border-color:var(--gold);
}

.form-control::placeholder{
    color:#fff;
    opacity:1;
}

.textarea-group i{
    top:10px;
}

textarea.form-control{
    resize:none;
    min-height:120px;
}



/* css for footer section  */

        .custom-footer {
            background-color: #041b4c;
            color: #fff; 
            padding-top: 60px;
            padding-bottom: 30px;
        }
        .footer-logo-text {
            color: #ffffff;
font-size: 32px;
    font-weight: 800;
        }
        .footer-heading {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
        }

   footer.custom-footer .ft-links li a::before {
 
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;

    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4AF37' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793L10.146 4.354a.5.5 0 1 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 1 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");

    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all .35s ease;

}     
footer.custom-footer .ft-links li a{
    position: relative;
}
 
   footer.custom-footer .ft-links li a:hover  {
    padding-left: 20px;
            color: var(--gold); 
        }

footer.custom-footer .ft-links li a:hover::before{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

        /* Social Media Icons Box Layout */
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: #ffffff;
            color: #000000;
            border-radius: 4px;
            text-decoration: none;
            font-size: 18px;
            transition: opacity 0.2s;
        }
        .social-icon:hover {
            opacity: 0.8;
            color: #000000;
        }
        /* Contact Accent Color Icons */
        .contact-icon {
            color: var(--gold); 
            width: 30px;
            font-size: 18px;
            display: inline-block;
        }
        /* Bottom Copyright Area Divider */
        .footer-bottom {
                border-top: 1px solid rgb(255 254 254 / 20%);
            margin-top: 50px;
            padding-top: 25px;
            font-size: 14px;
        }



  /* css for about us page        */

.inner-hero .hero-slider--text h1 {
    color: var(--bs-white);
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.inner-hero .hero-slider--content {
    padding: 250px 0 100px;
}

.inner-hero .hero-slider--content {
    padding: 0px;
    padding: 120px 0 120px;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
       background-color: rgba(0, 0, 0, 50%);
}
 .inner-hero h4 {
    color: var(--gold);
    font-weight: 600;
}
.lts-breadcrumb li a {
    color: rgba(255, 255, 255, 80%);
}

.lts-breadcrumb li.active {
    color: var(--gold);
}

.breadcrumb-item+.breadcrumb-item::before {
        color: rgba(255, 255, 255, 80%);
}




/*=========================
ABOUT HERO
==========================*/

.about-hero{

position:relative;
padding: 90px 0;

overflow:hidden;

}

.about-overlay{

position:absolute;

inset:0;

background:linear-gradient(90deg,
rgba(5,18,55,.92),
rgba(5,18,55,.75));

}

.about-hero .container{

position:relative;

z-index:5;

}

.hero-subtitle{
    text-transform: uppercase;

color:var(--gold);

font-size:18px;

font-weight:700;

letter-spacing:3px;

display:block;

margin-bottom:20px;

}

.about-hero h1{

font-size:52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 650px;
}

.job-details-hero.about-hero  h1{
    font-size:46px;
    font-weight: 700;
    max-width: inherit;
}

.about-hero h1 span{

color:var(--gold);

}

.about-hero p{
color: #ddd;
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 35px;
}

.hero-card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(15px);

padding:35px;

border-radius:20px;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

border:1px solid rgba(255,255,255,.15);

}

.hero-card-item{

background:#fff;

border-radius:15px;

padding:25px;

text-align:center;

transition:.4s;

}

.hero-card-item:hover{

transform:translateY(-8px);

}

.hero-card-item h2{

color:var(--primary-blue);

font-size:42px;

font-weight:800;

margin-bottom:10px;

}

.hero-card-item p{

margin:0;

color:#666;

font-size:16px;

line-height:1.4;

}

/*=========================
INTRO SECTION
==========================*/



.intro-image-wrapper{

position:relative;

}

.intro-image-wrapper img{

border-radius:20px;

}

.floating-box{

position:absolute;

    bottom: 20px;
    right: -20px;

background:var(--primary-blue);

padding:30px;

border-radius:20px;

color:#fff;

width:240px;

box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.floating-box h3{

font-size:60px;

margin-bottom:10px;

color:var(--gold);

font-weight:800;

}

.intro-feature{

display:flex;

gap:18px;

padding:22px;

border-radius:15px;

background:#fff;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

height:100%;

}

.intro-feature:hover{

transform:translateY(-8px);

}

.intro-feature i{

font-size:28px;

color:var(--gold);

}

.intro-feature h5{

font-weight:700;

color:var(--primary-blue);

margin-bottom:8px;

}

.intro-feature p{

margin:0;

font-size:15px;

line-height:1.6;

color:#666;

}


/*====================================
MISSION VISION VALUES
====================================*/




.section-description{

max-width:760px;

margin:auto;

font-size:19px;

    line-height: 1.3;

color:#666;

margin-bottom:20px;

}

.value-card{

height:100%;

padding:50px 35px;

background:#fff;

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.06);

transition:.4s;

position:relative;

overflow:hidden;

border:1px solid #eee;

}

.value-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:var(--gold);

transform:scaleX(0);

transition:.4s;

}

.value-card:hover::before{

transform:scaleX(1);

}

.value-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.active-card{

background:linear-gradient(135deg,
var(--primary-blue),
#123f99);

color:#fff;

}

.value-card.active-card h3,

.value-card.active-card p{

color:#fff;

}

.value-icon{

width:90px;

height:90px;

border-radius:20px;

background:#f4f7ff;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:30px;

transition:.35s;

}

.active-card .value-icon{

background:rgba(255,255,255,.15);

}

.value-card:hover .value-icon{

transform:rotate(-10deg) scale(1.1);

}

.value-icon i{

font-size:42px;

color:var(--gold);

}

.value-card h3{

font-size:30px;

font-weight:700;

margin-bottom:20px;

color:var(--primary-blue);

}

.value-card p{

font-size:17px;

line-height:1.8;

color:#666;

margin:0;

}

.core-values{

list-style:none;

padding:0;

margin:0;

}

.core-values li{

padding:12px 0;

font-size:17px;

font-weight:600;

border-bottom:1px solid rgba(0,0,0,.08);

position:relative;

padding-left:28px;

}

.core-values li:last-child{

border-bottom:none;

}

.core-values li::before{

content:"✓";

position:absolute;

left:0;

color:var(--gold);

font-weight:700;

font-size:18px;

}

.active-card .core-values li{

border-color:rgba(255,255,255,.15);

color:#fff;

}

.active-card .core-values li::before{

color:#fff;

}




/*=====================================
TEAM
======================================*/



.team-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.07);

transition:.4s;

height:100%;

}

.team-card:hover{

transform:translateY(-12px);

}



.team-image{

position:relative;

overflow:hidden;

}

.team-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.team-content{
    padding:25px;
}

.team-content h4{
    font-size:22px;
    font-weight:700;
}

.team-content span{
    font-size:15px;
}

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



.team-card:hover img{

transform:scale(1.08);

}

.team-social{

position:absolute;

right:20px;

top:20px;

display:flex;

flex-direction:column;

gap:12px;

opacity:0;

transform:translateX(20px);

transition:.35s;

}

.team-card:hover .team-social{

opacity:1;

transform:none;

}

.team-social a{

width:45px;

height:45px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:var(--primary-blue);

text-decoration:none;

transition:.3s;

}

.team-social a:hover{

background:var(--gold);

color:#fff;

}


/*=============================
PREMIUM BLACK CTA
==============================*/


.premium-cta-box{

background:#0d0d0d;

border-radius:15px;

padding:70px;


}



.premium-tag{

display:inline-block;

padding:10px 22px;

border:1px solid rgba(210,154,53,.4);

color:var(--gold);

border-radius:50px;

letter-spacing:2px;

font-size:14px;

font-weight:700;

margin-bottom:25px;

}

.premium-cta h2{
font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;


}

.premium-cta h2 span{

color:var(--gold);

}

.premium-cta p{

color: #cfcfcf;
    font-size: 17px;
    line-height: 1.5;
    max-width: 650px;

margin-bottom:35px;

}

.premium-features{

display:flex;

flex-wrap:wrap;

gap:20px;

}

.premium-features div{

color:#fff;

display:flex;

align-items:center;

gap:10px;

font-weight:600;

}

.premium-features i{

color:var(--gold);

}

.cta-action{

display:flex;

flex-direction:column;

justify-content:center;

align-items:flex-end;

gap:18px;

height:100%;

}

.gold-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

background:var(--gold);

color:#fff;

padding:18px 38px;

font-weight:700;

border-radius:60px;

text-decoration:none;

transition:.35s;

min-width:250px;

}

.gold-btn:hover{

background:#fff;

color:#000;

transform:translateY(-6px);

}

.outline-btn{

display:inline-flex;

align-items:center;

justify-content:center;

border:2px solid var(--gold);

color:var(--gold);

padding:18px 38px;

font-weight:700;

border-radius:60px;

text-decoration:none;

transition:.35s;

min-width:250px;

}

.outline-btn:hover{

background:var(--gold);

color:#fff;

}





.info-card{
    background: #f6f6f6;
        padding: 58px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
    transition: .35s;
    height: 100%;
    border: 1px solid #d9d9d9;

}

.info-card:hover{

transform:translateY(-10px);

}

.info-card i{

font-size:45px;

color:var(--gold);

margin-bottom:20px;

}

/*=========================
MODERN CONTACT FORM
=========================*/

.form-group-modern{
    margin-bottom:10px;
}

.form-group-modern label{

    display:block;

    font-size:15px;

    font-weight:700;

    color:var(--primary-blue);

    margin-bottom:8px;

}

.form-group-modern label span{

    color:var(--gold);

}

.modern-input{

height: 55px;
    border-radius: 8px;
    border: 1px solid #d8dee8;
    padding: 0 18px;
    font-size: 16px;
    color: var(--primary-blue);
    background: #fff;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(6, 37, 103, .05);

}

.modern-textarea{

    height:150px;

    padding-top:18px;

    resize:none;

}

.modern-input::placeholder{

    color:#8a93a8;

}

.modern-input:hover{

    border-color:var(--gold);

}

.modern-input:focus{

    border-color:var(--gold);

    box-shadow:
        0 0 0 4px rgba(210,154,53,.12),
        0 15px 40px rgba(6,37,103,.08);

    outline:none;

}

.form-select.modern-input{

    background-position:right 20px center;

}

textarea.modern-input{

    padding-top:18px;

}

.blog-wrapper .featured-post{

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:0 15px 40px rgba(6,37,103,.08);

transition:.35s;

height:100%;

}
.blog-wrapper .featured-image img{
    height:250px;
 
}

.blog-wrapper .featured-post:hover{

transform:translateY(-8px);

box-shadow:0 30px 70px rgba(6,37,103,.15);

}

.featured-image{

overflow:hidden;

position:relative;

}

.featured-image img{

transition:.5s;

width:100%;

}

.featured-post:hover img{

transform:scale(1.08);

}

.blog-wrapper .blog-tag{
 
position:absolute;

top:20px;

right:20px;

background:var(--gold);

color:#fff;

padding:8px 18px;

border-radius:40px;

font-size:13px;

font-weight:600;

}

.blog-meta{

display:flex;

gap:20px;

margin-bottom:15px;

font-size:14px;

color:#667085;

}

.read-more{

display:inline-flex;

align-items:center;

gap:8px;

font-weight:600;

color:var(--primary-blue);

text-decoration:none;

transition:.3s;

}

.read-more:hover{

color:var(--gold);

}

.read-more i{

transition:.3s;

}

.read-more:hover i{

transform:translateX(6px);

}

/*=============================
BLOG SIDEBAR
=============================*/

.blog-sidebar{

position:sticky;

top:120px;

}

.sidebar-widget{

background:#fff;

padding:30px;

border-radius:24px;

margin-bottom:30px;

box-shadow:0 15px 40px rgba(6,37,103,.08);

}

.widget-title{

font-size:22px;

font-weight:700;

margin-bottom:25px;

color:var(--primary-blue);

position:relative;

padding-bottom:15px;

}

.widget-title::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:55px;

height:3px;

background:var(--gold);

}

/* Search */

.sidebar-search{

display:flex;

overflow:hidden;

border-radius:60px;

border:1px solid #e4e7ec;

}

.sidebar-search input{

flex:1;

border:none;

padding:16px 20px;

outline:none;

}

.sidebar-search button{

width:60px;

border:none;

background:var(--primary-blue);

color:#fff;

transition:.3s;

}

.sidebar-search button:hover{

background:var(--gold);

}

/* Newsletter */

.newsletter-widget{

background:linear-gradient(135deg,#062567,#0b4ab8);

color:#fff;

}

.newsletter-widget h4{

font-size:30px;

margin:20px 0;

}

.newsletter-widget input{

width:100%;

border:none;

border-radius:50px;

padding:16px 20px;

margin:20px 0;

}

.newsletter-widget .btn-secondary, .hire-sidebar .btn-secondary {
 
    --btn-padding: 15px 25px;

    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
}




/* Categories */

.category-list{

list-style:none;

padding:0;

margin:0;

}

.category-list li{

margin-bottom:12px;

}

.category-list a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f8fafc;
    border-radius: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: .3s;

}

.category-list a:hover{

background:var(--primary-blue);

color:#fff;

}

.category-list span{

background:var(--gold);

width:34px;

height:34px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:13px;

font-weight:700;

}

/* Recent Posts */

.recent-post{

display:flex;

gap:15px;

margin-bottom:20px;

}

.recent-post img{

width:90px;

height:75px;

border-radius:16px;

object-fit:cover;

}

.recent-post span{

font-size:13px;

color:var(--gold);

display:block;

margin-bottom:6px;

}

.recent-post a{

font-weight:600;

color:var(--primary-blue);

text-decoration:none;

line-height:1.5;

}



/* CTA */

.sidebar-cta{

background:var(--primary-blue);

color:#fff;

padding:40px 30px;

border-radius:24px;

text-align:center;

box-shadow:0 20px 60px rgba(6,37,103,.15);

}

.sidebar-cta h4{

font-size:30px;

margin-bottom:15px;

}

.sidebar-cta p{

opacity:.85;

margin-bottom:25px;

}

.sidebar-cta .btn-secondary {
    --btn-padding: 13px 31px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-cta .btn-secondary:hover, .newsletter-widget .btn-secondary:hover, .hire-sidebar .btn-secondary:hover, .job-details-hero .btn-secondary:hover, 
.job-details-hero .btn-primary:hover {
    background: #fff;
    color:var(--primary-blue);
}



.job-details-hero .btn-primary {
    background: #fff;
    color:var(--primary-blue);
}

.job-details-hero .btn-primary:hover {
    background: var(--gold);
    color:#fff;
}




.form-card .form-control,
.form-card .form-select{
    min-height:56px;
    border-radius:14px;
}

.form-card textarea.form-control{
    min-height:160px;
}

.hire-sidebar{

background:var(--primary-blue);

color:#fff;

border-radius:30px;

overflow:hidden;

box-shadow:0 25px 70px rgba(6,37,103,.15);



}

.hire-image{

position:relative;

}

.hire-image img{

width:100%;

height:300px;

object-fit:cover;

}

.hire-badge{

position:absolute;

left:25px;

bottom:25px;

background:#fff;

color:var(--primary-blue);

padding:10px 18px;

border-radius:50px;

font-weight:600;

font-size:14px;

}

.hire-badge i{

color:var(--gold);

margin-right:6px;

}

.hire-content{

padding:40px;

}

.hire-content h3{

font-size:34px;

margin:15px 0;

}

.hire-content h3 span{

color:var(--gold);

}

.hire-benefits{

list-style:none;

padding:0;

margin:30px 0;

}

.hire-benefits li{

display:flex;

align-items:center;

gap:12px;

margin-bottom:18px;

}

.hire-benefits i{
color:var(--gold);

font-size:20px;

}

.hire-stats{

display:flex;

justify-content:space-between;

margin:35px 0;

padding:25px 0;

border-top:1px solid rgba(255,255,255,.15);

border-bottom:1px solid rgba(255,255,255,.15);

}

.hire-stats h4{

font-size:32px;

margin-bottom:5px;

color:var(--gold);

}

.hire-stats span{

font-size:14px;

opacity:.8;

}

.hire-contact{

display:flex;

flex-direction:column;

gap:15px;

margin-bottom:30px;

}

.hire-contact a{

color:#fff;

text-decoration:none;

}

.hire-contact i{

margin-right:10px;

color:var(--gold);

}

.input-icon{

position:relative;

}

.job-search-box{

background: #fff;
    padding: 25px;
    border-radius: 10px;

}

.input-icon i{

position:absolute;

left:18px;

top:50%;

transform:translateY(-50%);

color:#D29A35;

z-index:2;

}

.input-icon .modern-input{

padding-left:48px;

}

.job-search-box .btn-secondary {
  
    --btn-padding: 15px 25px;
    
    border-radius: 8px;
    font-size: 1rem;
}

.job-meta{

    display:flex;

    flex-wrap:wrap;

    gap:15px;


}

.job-meta span{

    background:#f7f8fb;

    padding:8px 15px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.job-meta i{

color:var(--gold);
    margin-right:3px;

}

/* css for job details page */

.job-details-content h2{
    
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.job-details-content h3{
margin-bottom: 15px;
    font-size: 30px;
    font-weight: 700;
    margin-top: 30px;
}

.job-details-content h4{
margin-bottom: 15px;
    font-weight: 600;
}



.job-details-content ul{
    margin-bottom: 25px;
    list-style: none;
    padding: 0 0 0 7px;


}

.job-details-content ul li{

position:relative;
    padding-left: 30px;
    margin-bottom: 4px;
    line-height: 1.8;

}

.job-details-content ul li::before{

    content:"";

    position:absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: rgba(210, 154, 53, .12);
    border-radius: 50%;

}

.job-details-content ul li::after{

    content:"\F26E";   /* Bootstrap Icon: check-lg */

    font-family:"bootstrap-icons";

    position:absolute;
    left: 4px;
    top: 4px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;

}

.job-details-content p{

font-size:17px;



}


.job-details-content .apply-job{
        background: #f3f3f3;
    padding: 30px;
    border-radius: 12px;
}
/*==================================
HOW WE WORK
==================================*/

.process-card{

    position:relative;

    text-align:center;

    background:#fff;

    padding:40px 25px;

  border-radius: 15px;

    border:1px solid rgba(6,37,103,.08);

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    height:100%;

    transition:.35s;

}

.process-number{

    position:absolute;

    top:18px;

    right:20px;

    font-size:46px;

    font-weight:700;

    color:rgba(6,37,103,.06);

    line-height:1;

}

.process-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--gold);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--bs-white);

    font-size:34px;

    transition:.35s;

}

.process-card h5{
margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.process-card p{

    margin:0;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.process-card:hover .process-icon{

    background:var(--primary-blue);

    color:#fff;

}

.process-card.active{

    background:linear-gradient(180deg,#062567,#0a347d);

    color:#fff;

}

.process-card.active h5,

.process-card.active p{

    color:#fff;

}

.process-card.active .process-icon{

    background:var(--gold);

    color:#fff;

}

.process-card.active .process-number{

    color:rgba(255,255,255,.10);

}

.services-card .btn-secondary{
    --btn-padding:12px 30px;
}


/*==================================
Services Card
==================================*/

.services-card{

    position:relative;

    background:#fff;

    border:1px solid rgba(6,37,103,.08);

    border-radius: 15px;
    padding: 35px;

    overflow:hidden;

    transition:all .4s ease;

    box-shadow:0 10px 35px rgba(6,37,103,.06);

}

/* Gold Top Border */

.services-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(90deg,var(--gold),#f3c15c);

    transition:.45s;

}


/* Hover */

.services-card:hover{

    transform:translateY(-10px);

    border-color:rgba(210,154,53,.25);

    box-shadow:

        0 25px 60px rgba(6,37,103,.10),

        0 10px 25px rgba(210,154,53,.08);

}

.services-card:hover::before{

    width:100%;

}

.services-card:hover::after{

    transform:scale(1.2);

}

/* Image */

.services-card .intro-image-wrapper{

    overflow:hidden;

       border-radius: 12px;

}

.services-card img{

    transition:transform .6s ease;

}

.services-card:hover img{

    transform:scale(1.06);

}

.services-card .section-title {
    font-size: 2.5rem;
}

/*==================================
WHY CHOOSE
==================================*/

.why-choose{

    background:linear-gradient(135deg,#062567 0%,#0d3b9b 100%);

    position:relative;

    overflow:hidden;

}

.why-choose::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-180px;

    right:-180px;

}

.why-choose::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(210,154,53,.08);

    border-radius:50%;

    left:-120px;

    bottom:-120px;

}

.why-box{

    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: .35s;
    position: relative;
    z-index: 2;
}

.why-box:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:var(--gold);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:var(--bs-white);
    transition:.35s;

}

.why-box:hover .why-icon{

    background:var(--primary-blue);

    color:#fff;

    transform:rotate(-10deg) scale(1.1);

}

.why-box h4{

color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 600;


}

.why-box p{

    margin-bottom: 0;
    font-size: 18px;

}

/*==================================
Testimonials
==================================*/

.testimonials-section{

    background:#f8fafc;

}

.testimonial-card{

    background:#fff;

    border-radius:15px;

    padding:40px;

    border:1px solid rgba(6,37,103,.2);

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

}



.quote-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:rgba(210,154,53,.12);

    color:var(--gold);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}



.testimonial-card p{
font-style: italic;
    margin-bottom: 20px;
    min-height: 90px;

}

.testimonial-author{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-author img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-author h5{

    margin-bottom:5px;

}

.testimonial-author span{

    color:#6c757d;

    font-size:14px;

}

/* Swiper */

.testimonialSwiper{

    padding-bottom:60px;

}

.testimonialSwiper .swiper-pagination-bullet{

    width:10px;

    height:10px;

    opacity:1;

    background:#cbd5e1;

}

.testimonialSwiper .swiper-pagination-bullet-active{

    background:var(--gold);

    width:28px;

    border-radius:20px;

}


/*==================================
Success Metrics
==================================*/





.metric-box{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.metric-box:hover{

    transform:translateY(-10px);

    background:#fff;

}

.metric-box h3{

    font-size:48px;

    font-weight:700;

    color:var(--gold);

    margin-bottom:12px;

}

.metric-box span{

    color:#fff;

    font-weight:500;

    display:block;

    transition:.35s;

}

.metric-box:hover span{

    color:var(--primary-color);

}


/* css for responsive design */

@media(max-width:991px){

     .navbar-collapse{
        margin-top:20px;
        background:#fff;
        border-radius:15px;
        padding:20px;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    .navbar-nav{
        gap:0;
    }

    .navbar-nav .nav-link{
        padding:14px 0;
        border-bottom:1px solid #eee;
    }

    .navbar-nav .dropdown-menu{

        position:static;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        box-shadow:none;

        padding:0 0 0 15px;

        background:transparent;

        min-width:100%;

        pointer-events:auto;

    }

    .navbar-nav .dropdown-menu.show{
        display:block;
    }


    .about-images{
        flex-direction:column;
    }

    .left-column,
    .right-column{
        width:100%;
    }

    .about-content h2{
        font-size:42px;
    }

    .about-content p{
        font-size:18px;
    }

    .feature-box li{
        font-size:18px;
    }


    .hero-content h2{
        font-size:3rem;
    }

    .hero-outline{
        gap:10px;
    }

    .hero-arrow{
        width:70px;
        height:70px;
    }

    .hero-outline-text{
        font-size:4rem;
    }

    .hero-content p{
        font-size:1.1rem;
    }
    
    .service-card{
        height:500px;
    }

    .service-content{ 
        padding:40px 25px;
    }

    .service-content h3{
        font-size:2rem;
    }

    .hover-content p{
        font-size:16px;
    }

     .section-heading h2{
        font-size:42px;
    }

    .job-card{
        flex-direction:column;
    }

    .job-content h3{
        font-size:1.5rem;
    }

    .job-meta li{
        font-size:16px;
    }

    
    .specialized-industries{
        padding:60px 30px;
    }

    .section-title{
        font-size:2.8rem;
        margin-bottom:20px;
    }

    .industry-item h4{
        font-size:1.5rem;
    }

    .industry-item p{
        font-size:1.1rem;
    }

    .industry-icon{
        font-size:2.2rem;
        min-width:50px;
    }

    .section-title{
        font-size:2.8rem;
    }

    .featured-image img{
        height:350px;
    }

    .blog-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .blog-thumb{
        flex:auto;
        width:100%;
    }

    .blog-thumb img{
        height:220px;
    }

    .blog-info h4{
        font-size:1.5rem;
    }

    .featured-content h3{
        font-size:1.8rem;
    }

      .contact-banner{
        min-height:500px;
    }

    .contact-form-wrapper{
        min-height:auto;
        padding:60px 30px;
    }

    .banner-content h2{
        font-size:3rem;
    }

    .contact-form-wrapper h2{
        font-size:2.5rem;
    }

    .banner-content p{
        font-size:1rem;
        letter-spacing:2px;
    }

.section-title-dark{

font-size:38px;

}

.value-card{

padding:35px 25px;

}

.premium-cta-box{

padding:45px 30px;

text-align:center;

}

.premium-cta h2{

font-size:40px;

}

.cta-action{

margin-top:40px;

align-items:center;

}

.premium-features{

justify-content:center;

}

}


@media(max-width:576px){

.gold-btn,

.outline-btn{

width:100%;

}

}
 