
/* =================== HEADER ===================== */ 

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 5px 0;
    z-index: 999;
    transition: all .4s ease;
    /*background: transparent;*/
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/*header.scrolled {*/
/*    background: var(--white);*/
/*    box-shadow: 0 4px 20px rgba(0,0,0,0.1);*/
/*}*/
header .container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-section{display:flex;display: flex;align-items: center;gap: 10px;}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-shape {
    width: 140px;
    height: 80px;
    transform: skew(20deg);
    transition: all .45s ease;
    position: relative;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-logo{
  width: 110px;
    transform: skew(340deg);
}
.iso-logo{width:80px;}
header.scrolled .logo-shape {
    background: transparent;
    background-color: var(--white);
    padding: 0;
    transition: all .45s ease;
}
nav{transition: 0.4s ease;}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}
nav ul li a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
    text-transform: uppercase;
}
/*header.scrolled nav ul li a {*/
/*    color: var(--blue);*/
/*}*/
/*header.scrolled nav ul li a.fill-btn {*/
/*    color: var(--white);*/
/*}*/
/*header.scrolled .enquiry-btn {*/
/*    background: var(--blue);*/
/*    color: var(--white) !important;*/
/*}*/
.enquiry-btn {
    padding: 8px 18px;
    background: #fff;
    color: #0046c7 !important;
    border-radius: 6px;
    font-weight: 600;
}
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
}
    .menu-close{opacity:0;}
/* RESPONSIVE */
@media (max-width: 900px) {
    .menu-toggle { display: block;color:var(--blue); }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -8px 0 25px rgba(0,0,0,0.1);
        padding-top: 70px;
        z-index: 1000;
    }

    nav.active {right: 0;padding: 50px;}
    nav ul {display: flex;flex-direction: column;align-items:baseline;}
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 22px;
        background: none;
        border: none;
        cursor: pointer;
        opacity: 1;
    }
    .fill-btn{color:var(--white)}
}

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

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
}
.heroSwiper {
  width: 100%;
  height: 100vh;
}
.heroSwiper .swiper-wrapper{
  z-index: 0;
}
.swiper-slide.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 0%);
}
.hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 720px;
  padding: 20px;
  z-index: 1;
margin-top: 70px;
  animation: fadeUp 1s ease;
}
.hero-btn-group{display:flex;gap: 10px;justify-content:center;}
.hero-fill-btn {
  padding: 14px 32px;
  background: #00a0e3;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}
.hero-fill-btn:hover {
  background: white;
  color: #00a0e3;
}

.hero-outline-btn {
  padding: 14px 32px;
  background: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: #00a0e3;
  transition: 0.3s ease;
}
.hero-outline-btn:hover {
  background: white;
  color: #00a0e3;
}

/* Nav Arrows */
.hero-button-prev,
.hero-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}

.hero-button-prev:hover,
.hero-button-next:hover {
  opacity: 0.7;
}

.hero-button-prev { left: 20px; }
.hero-button-next { right: 20px; }

/* Pagination */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #00a0e3;
  opacity: 1;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



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

.about-image {
    overflow: hidden;
    display: block;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.about-image:hover img {
    transform: scale(1.12);
}
.about-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #dceaff;
    transition: .3s ease;
    height: 100%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}
.about-card:hover {
    transform: translateY(-6px);
    border-color: #3b6eff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

/* ================= CORE VALUE ================= */

.values-section {
    background-image: url(../images/value-bg.jpg);
    background-size: cover;
}
.value-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    transition: .3s ease;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e0ecff;
}
.value-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    transition: 0.3s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: #3b6eff;
}
.value-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.2);
}

/* ================= PROCESS ================= */

.process-section {
  background: var(--white);
}
.process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 35px 25px;
  flex: 1;
  height: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: 0.35s;
  border: 1px solid rgba(0,0,0,0.06);
}
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.process-card .icon {
  width: 60px;
  height: 60px;
  background: #F4C532;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  transition: 0.3s;
}
.process-card:hover .icon {
  background: #1A4C86;
}
.process-card .step-number {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 12px;
  font-weight: 700;
  color: #4CB050;
  opacity: 0.7;
}

/* =================== SERVICE ===================== */ 

.service-section{
    background-image: url(../images/about-ft.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}
.service-section.service-page{
  background-color: var(--white);
  background-image: none;
}
.service-card {
    background: linear-gradient(135deg, #e9f4ff 0%, #ffffff 100%);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid #d9e9ff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}
.service-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -80px;
    right: -80px;
    background: rgba(0,122,255,0.15);
    border-radius: 50%;
    transition: 0.5s ease;
    opacity: 0.3;
}
.service-card:hover::after {
    transform: scale(1.6);
    opacity: 0.45;
}
.service-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #007bff15;
    color: #007bff;
    font-size: 22px;
    margin-bottom: 12px;
    transition: all 0.35s ease;
}
.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.1);
    background: #007bff;
    color: #fff;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border-color: #b0d4ff;
}
.service-card img{width:80px;margin-bottom:20px;}

/* ================= SECTOR ================= */

.sector-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: .3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.sector-card:hover {
  transform: translateY(-6px);
}
.sector-image {
  position: relative;
  height: 300px;
}
.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}
.sector-card:hover img {
  transform: scale(1.1);
}
.sector-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 18px;
  transform: translateY(58%);
  transition: .35s ease;
}
.sector-overlay p{
    opacity: 0;
}
.sector-card:hover .sector-overlay {
  transform: translateY(0%);
}
.sector-card:hover .sector-overlay p {
  opacity: 1;
}

/* =================== EXPERTISE ===================== */ 

.expertise-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid #e6eefb;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1e3c72;
  cursor: pointer;
  user-select: none;
  transition: 
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .35s ease;
  position: relative;
  overflow: hidden;
}
.expertise-card i {
  font-size: 18px;
  color: #3b7bff;
  margin-top: 3px;
}
.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(56, 119, 255, 0.15);
  border-color: #cddcfa;
}
.expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(56, 119, 255, 0.08);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.6);
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.expertise-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
/* =================== CLIENT SECTION ===================== */ 

.clientSwiper {
    padding: 20px 50px;
    position: relative;
}
.clientSwiper .swiper-wrapper{
  justify-content: center;
}
.clientSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    /*opacity: 0.7;*/
    transition: 0.3s ease;
}
.clientSwiper .swiper-slide:hover {
    opacity: 1;
    transform: scale(1.06);
}
.clientSwiper img {
    width: 160px;
    height: 83px;
    background-color: #fff;
    padding: 10px;
    object-fit: contain;
    filter: grayscale(0);
    transition: 0.3s ease;
}
.clientSwiper img:hover {
    filter: grayscale(100%);
}
.client-button-next, .client-button-prev {
    color: #1e3c72;
    transition: 0.3s ease;
}
.client-button-next:hover, .client-button-prev:hover {
    color: #3b7bff;
}
.client-button-next:after, .client-button-prev:after {
    width: 30px;
    height: 30px;
    font-size: 12px;
    background-color: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    font-weight: bold;
}


/* =================== GALLERY ===================== */ 

.fancy-gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  cursor: zoom-in;
}
.fancy-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .4s ease;
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transform: translateY(15px);
  transition: .3s ease;
}
.fancy-gallery a:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}
.fancy-gallery a:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}


/* =================== CTA ===================== */ 


/* ==================== TESTIMONIAL ====================== */

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.06);
  transition: .35s ease;
  border: 1px solid rgba(0,0,0,.05);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 35px rgba(0,0,0,.12);
}
.quote-icon {
  font-size: 34px;
  color: var(--brand-blue, var(--blue));
}
.testimonial-author {
  margin-top: 25px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 12px;
}
.testimonial-author span {
  font-size: 14px;
  color: var(--muted, #707070);
}

/* ======================== Contact Section ==================== */

.office-card {
  flex: 1;
  min-width: 290px;
  padding: 25px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: .3s;
  height: 100%;
}
.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* Contact Form */
.contact-form-wrapper {
  background: #f5f9ff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* Map */
.map-section iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* ==================== CAREER ========================== */

.job-card {
    background: white;
    padding: 25px;
    border-radius: 14px;    
    border: 1px solid #ececec;
    transition: 0.3s;
    cursor: pointer;
}
.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 18px rgba(0,0,0,0.08);
}
.job-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: #42526e;
  font-size: 14px;
}
.job-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* =================== FOOTER ===================== */

.site-footer {
    padding: 90px 0 40px;
    color: #333;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-logo {
    width: 100px;
}
.footer-card a {
    display: inline-block;
    margin-right: 12px;
    font-size: 15px;
    color: var(--brand-blue, #005aa3);
    transition: .3s;
}
.footer-card a:hover {
    color: var(--brand-green, #0c8b48);
}
.footer-card ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}
.footer-card ul li a {
    color: #444;
    transition: .25s;
}
.footer-card ul li a:hover {
    color: var(--brand-blue, #005aa3);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom {
    text-align: center;
    font-size: 14px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: #666;
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
    color: var(--black);
    background-color: var(--yellow);
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 120, 169, 0.12);
    z-index: 1400;
}

/*RESPONSIVE */
@media (max-width: 991px) {

}

/* Mobile */
@media (max-width: 576px) {
.logo-shape {width: auto;}
.header-logo {width: 50px;}
.iso-logo {width: 50px;height: 50px;}  
.hero-fill-btn, .hero-outline-btn {padding: 8px 16px;width:fit-content;}
.hero-btn-group{display:flex;flex-direction:column;align-items:center;}
.hero-button-prev, .hero-button-next{display:none;}
.about-card,.value-card,.sector-card,.testimonial-card {
    margin-bottom: 20px;
    height: auto;
}
.page-banner {padding: 120px 0 50px;}
.contact-form-wrapper {background: transparent;padding: 15px;}
.big-heading{font-size:40px;}
}


