@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
            --color1: #00338d;
            --color2: #2086c4;
           
     
            --font1:"Roboto", sans-serif;
            --font2:"Oswald", sans-serif;
            
        }

body{
margin:0;
font-family: var(--font1); 
            color: rgb(38, 44, 44);
            font-size: 16px;
            text-align: justify;

}

   @media(max-width:769px)
        {
          body{text-align: center;}
        }
a{text-decoration: none;}
        img { display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font2); 
  font-weight:500;
 
  margin: 0;
}
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 80%; max-width: 100%; }
@media (max-width: 1401px) {
   .container {
        width: 80%;
    }
}
@media (max-width: 1204px) {
   .container {
        width: 95%;
    }
}

figcaption, figure{margin: 0; padding: 0;}

.cr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* When fixed */
.main-navbar.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  padding: 8px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  z-index: 2000;

  /* smooth entry */
  animation: slideDown 0.5s ease;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);

}

/* Logo becomes smaller */
.main-navbar.fixed-nav .navbar-brand img {
  max-height:35px;
}

/* Smooth slide animation */
@keyframes slideDown {
  from {
    transform: translateY(-60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}




/* ===== NAVBAR ===== */
.main-navbar{
    background:rgba(0,0,0,1);
    padding:18px 0;
    box-shadow:0 3px 15px rgba(0,0,0,0.05);
    font-family: var(--font2);
}

/* ===== LOGO ===== */
.brand-text{
    font-size:20px;
    font-weight:700;
    color:#008080;
    line-height:1.1;
}

/* ===== NAV LINKS ===== */
.navbar-nav .nav-link{
    color:#fff;
    font-size:15px;
    margin:0 12px;
    position:relative;
    display:inline-flex;   /* 🔥 IMPORTANT FIX */
    align-items:center;
    text-transform:uppercase;
    padding-bottom:6px;
    transition:0.4s;
      position:relative;
    z-index:2;
    
}

/* ===== UNDERLINE (FOR ALL LINKS INCLUDING DROPDOWN) ===== */
.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,#0b4dc5,#00aeff);

    transform:scaleX(0);
    transform-origin:right;
    transition:transform 0.4s cubic-bezier(.77,0,.18,1);
   z-index:1;
}

/* ===== HOVER + ACTIVE ===== */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    transform:scaleX(1);
    transform-origin:left;
}

/* ===== TEXT COLOR ===== */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#00aeff;
}

/* ===== BULLET DOTS (DESKTOP ONLY) ===== */
@media(min-width:992px){
    .navbar-nav .nav-item{
        position:relative;
    }

    .navbar-nav .nav-item:not(:last-child)::after{
        content:"•";
        position:absolute;
        right:-12px;
        top:50%;
        transform:translateY(-50%);
        color:#00aeff;
        font-size:14px;
        opacity:0.7;
    }
}

/* ===== DROPDOWN ARROW ===== */
.dropdown-toggle::after{
    display:none;
}

.dropdown-toggle{
    position:relative;
    padding-right:20px !important;
}

/* CUSTOM ARROW */
.dropdown-toggle::before{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    width:6px;
    height:6px;
    border-right:2px solid #0b4dc5;
    border-bottom:2px solid #0b4dc5;
    transform:translateY(-50%) rotate(45deg);
    transition:0.3s;
}

/* ROTATE ON OPEN */
.dropdown.show .dropdown-toggle::before{
    transform:translateY(-50%) rotate(-135deg);
}



/* ===== DROPDOWN MENU ===== */
.dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:all .25s ease;
    border:none;
    border-radius:10px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    padding:10px 0;
    width:250px;
     z-index:1;
}

.dropdown.show .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ===== DROPDOWN ITEMS ===== */
.dropdown-item{
    padding:10px 20px;
    transition:.3s;
    border-bottom:1px solid #e3e3e3;
}

.dropdown-item:hover{
    background:linear-gradient(to right,#0b4dc5,#00aeff);
    color:#fff;
}

/* ===== TOGGLER ===== */
.fancy-toggler{
    border:none;
    background:linear-gradient(135deg,#0b4dc5,#00aeff);
    width:45px;
    height:45px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,174,255,0.3);
}

.fancy-toggler:hover{
    box-shadow:0 12px 30px rgba(0,174,255,0.5);
}

.hamburger span{
    display:block;
    width:20px;
    height:2px;
    background:#fff;
    margin:4px 0;
    transition:.3s;
}

/* TOGGLER ANIMATION */
.fancy-toggler.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}
.fancy-toggler.active span:nth-child(2){
    opacity:0;
}
.fancy-toggler.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* ===== MOBILE ===== */
.offcanvas{
    width:280px;
}

.offcanvas-body{
    padding-top:10px;
}





/* DESKTOP: keep inside container */
@media(min-width:992px){

    .offcanvas{
        position:static;
        transform:none !important;
        visibility:visible !important;
        background:none;
        border:0;
        display:flex;
        align-items:end;
      
    }

    .offcanvas-header{
        display:none;
    }

    .offcanvas-body{
        padding:0;
    }

    .navbar-nav{
        flex-direction:row;
        align-items:center;
        margin-left:auto;
    }

    .navbar-toggler{
        display:none;
    }
}

@media(max-width:991px){

    .navbar-nav .nav-link{
        margin:0;
        padding:10px 0;
        border-bottom: 1px solid #161616;
        width: 100%;
    }

    /* optional: disable underline in mobile */
    .navbar-nav .nav-link::after{
        display:none;
    }

    .dropdown-menu{
        position:static;
        transform:none;
        opacity:1 !important;
        visibility:visible !important;
        box-shadow:none;
        display:none;
        padding-left:15px;
    }

    .dropdown.show .dropdown-menu{
        display:block;
    }
}

.home-header{position: absolute; z-index: 2000; width: 100%; }
.home-header .main-navbar {
  background: rgba(0,0,0,.5);
}
.offcanvas {
  height: 100vh !important;
  top: 0 !important;
  background: #000;
}

.menu-title{color:#fff}
/* .offcanvas-header .btn-close{--bs-btn-close-color: #fff !important;} */
.offcanvas-header .btn-close {
  filter: invert(1);
}

/* ===== BANNER ===== */
.banner-carousel {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* SLIDE */
.carousel-item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

/* ZOOM EFFECT */
/* .carousel-item.active img {
    transform: scale(1.15);
} */

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0));
    z-index: 1;
}

/* CONTENT */
.banner-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 100;
    color: #fff;
    max-width: 520px;
    
}

.banner-content h2 {
    font-size: 60px;
    font-weight: 800;
}

.banner-content p {
    font-size: 16px;
    margin-top: 15px;
}


/* GRADIENT BUTTON (AGINCO STYLE) */
.btn-gradient{
    position:relative;
    display:inline-block;
    padding:12px 30px;
    border-radius:50px;
    background:linear-gradient(90deg,#0b4dc5,#00aeff);
    color:#fff;
    font-weight:600;
    text-decoration:none;
    overflow:hidden;
    z-index:1;
    transition:all 0.4s ease;
    margin-top: 30px;
}

/* TEXT */
.btn-gradient span{
    position:relative;
    z-index:2;
}

/* LIGHT SHINE EFFECT */
.btn-gradient::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(120deg, rgba(255,255,255,0.4), transparent);
    transform:skewX(-25deg);
    transition:0.6s;
}

/* HOVER EFFECT */
.btn-gradient:hover::before{
    left:130%;
}

/* HOVER SCALE + GLOW */
.btn-gradient:hover{
    transform:translateY(-3px);
    box-shadow:0 3px 30px rgba(0,174,255,0.4);
    color:#fff;
}

.btn-gradient i{
    margin-left:8px;
    transition:0.3s;
}

.btn-gradient:hover i{
    transform:translateX(6px);
}

/* INDICATORS LEFT (DESKTOP) */
.carousel-indicators {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.carousel-indicators{
    pointer-events:none ;
}

.carousel-indicators button{
    pointer-events:auto;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    opacity: 1;
    transition: 0.3s;
}

.carousel-indicators .active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}

/* REMOVE ARROWS */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* ================= TABLET ================= */
@media (max-width: 991px){

    .banner-content{
        left:5%;
        max-width:420px;
    }

    .banner-content h2{
        font-size:42px;
    }

    .banner-content p{
        font-size:14px;
    }

    /* .carousel-item.active img{
        transform: scale(1.08);
    } */

    .carousel-indicators{
        left:15px;
    }


     .banner-content{max-width: 100%; left:50%; transform: translateX(-50%); text-align: center;  width: 70%;}
     .overlay{background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.5));
  z-index: 1;}
  
}

/* ================= MOBILE ================= */
@media (max-width: 576px){
  
   .banner-carousel .btn-gradient{display: none;}

    .banner-carousel,
    .carousel-item,
    .carousel-item img{
        height:auto;
    }

    .banner-content{
        /* left:5%;
        right:5%; */
        max-width:100%;
        width: 90%;
    }

    .banner-content h2{
        font-size:28px;
        line-height:1.2;
    }

    .banner-content p{
        font-size:13px;
        margin-top:10px;
    }

    .banner-content .btn{
        padding:8px 18px;
        font-size:14px;
    }

    /* darker overlay for readability */
    .overlay{
        background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    }

    /* indicators bottom */
    .carousel-indicators{
        flex-direction:row;
        left:50%;
        bottom:15px;
        top:auto;
        transform:translateX(-50%);
    }

    .carousel-indicators [data-bs-target]{
        width:10px;
        height:10px;
    }
}

/* SECTION WRAPPER */
.about-section {
    padding: 100px 0;
    position: relative;
}

/* LEFT IMAGE BLOCK */
.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* image hover zoom */
.about-img:hover img {
    transform: scale(1.03);
}

.about-right{padding-left: 60px;}

/* FLOATING BADGE CARD */
.award-card {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    background: linear-gradient(135deg, #ff00cc, #4a00e0);
    color: #fff;
    padding: 28px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* glow layer */
.award-card::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);
    transform: rotate(25deg);
    transition: 0.5s;
}

/* hover effect */
.award-card:hover {
    transform: translateY(-50%) scale(1.08) rotate(-1deg);
    box-shadow: 0 35px 90px rgba(0,0,0,0.35);
}

.award-card:hover::before {
    inset: -20%;
}

/* ICON */
.award-card i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    transition: 0.4s;
}

.award-card:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* NUMBER */
.award-card h2 {
    font-size: 42px;
    font-weight: 900;
    margin: 0;
}

/* TEXT */
.award-card p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* FEATURE BOX */
.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    text-align: left;
}

.feature-box:hover {
    transform: translateX(5px);
}

.feature-box i {
    font-size: 26px;
    color: #0b4dc5;
}

/* TITLE */
.section-tag {
    color: var(--color2);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    font-family: var(--font1);
}

.section-tag::after {
  top: 12px;
  width: 33px;
  height: 2px;
  right: -45px;
  content: "";
  position: absolute;
  background-color: var(--color2);
}

.about-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
    color: #000320;
}

/* BUTTON */
.btn-custom{
    position:relative;
    background:linear-gradient(90deg,#0b4dc5,#00aeff); /* 🔥 gradient */
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-weight:600;
    overflow:hidden;
    z-index:1;
    transition:0.3s ease;
    padding-right: 60px;
    font-family: var(--font2);
}

/* TEXT ABOVE */
.btn-custom span{
    position:relative;
    z-index:2;
}

/* SHINE EFFECT */
.btn-custom::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(120deg, rgba(255,255,255,0.4), transparent);
    transform:skewX(-25deg);
    transition:0.6s;
    
}

/* HOVER EFFECT */
.btn-custom:hover::before{
    left:130%;
}

/* HOVER LIFT + GLOW */
.btn-custom:hover{
    transform:translateY(-3px);
    /* box-shadow:0 10px 30px rgba(0,174,255,0.4); */
    color:#fff;
}
.btn-custom i{top: 10px;
  right: 10px;
  color: #000;
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  position: absolute;
  border-radius: 100%;
  text-align: center;
  background-color: #fff;  }
/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 993px){

    .about-section{
        padding:70px 0;
    }

    .about-right{
        padding-left:0;
        margin-top:0px;
    }

    .about-heading{
        font-size:32px;
    }

    /* FIX BADGE POSITION */
    .award-card{
        right:20px;
        top:auto;
        bottom:-30px;
        transform:none;
        width:180px;
        padding:20px;
    }

    .award-card:hover{
        transform:scale(1.05);
    }
    .about-img{margin-top: 50px;}
}


@media(max-width:769px)
{
    .about-heading{text-align: center;}
}
/* MOBILE */
@media (max-width: 576px){

    .about-section{
        padding:60px 0;
    }

    .about-heading{
        font-size:26px;
        line-height:1.3;
    }

    .section-tag::after{
        display:none;
    }

    .feature-box{
        gap:10px;
    }

    .feature-box i{
        font-size:20px;
    }

    /* STACK BADGE NICELY */
    .award-card{
        position:static;
        margin-top:15px;
        width:100%;
        border-radius:14px;
    }

    .about-img{
        text-align:center;
    }

    .about-img img{
        border-radius:12px;
    }

    /* BUTTON FULL WIDTH (optional premium look) */
    .btn-custom{
        width:100%;
        justify-content:center;
    }
}

@media (max-width: 500px){

    /* FIX IMAGE WRAPPER */
    .about-img{
        position:relative;
        display:block;
    }

    /* FORCE BADGE RESET */
    .award-card{
        position:relative !important;
        right:auto !important;
        top:auto !important;
        bottom:auto !important;
        transform:none !important;

        width:100%;
        margin-top:15px;
        padding:18px;
        border-radius:12px;
    }

    /* REMOVE HOVER SCALE (causes jump on mobile) */
    .award-card:hover{
        transform:none;
    }

    /* TEXT SIZE FIX */
    .about-heading{
        font-size:24px;
        line-height:1.3;
    }

    .about-right{
        padding-left:0;
    }

    /* BETTER SPACING */
    .about-section{
        padding:50px 0;
    }

    /* FEATURE FIX */
    .feature-box{
        gap:10px;
    }

    .feature-box i{
        font-size:18px;
    }

    /* BUTTON CLEAN */
    .btn-custom{
        width:100%;
        justify-content:center;
        padding:10px;
    }

    /* REMOVE EXTRA LINE */
    .section-tag::after{
        display:none;
    }
}



/* ================= SECTION ================= */
.services-area{
  position:relative;
  padding:120px 0;
  background-color: #130141;
  overflow:hidden;
}

/* MULTI BG LIKE ORIGINAL */
.services-area::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("https://themexriver.com/wp/aginco/wp-content/themes/aginco/assets/images/service-bg-shape.png") repeat center;
  z-index: 2;
  opacity:1;
}

/* TITLE */
.main-heading span{
  color:#00cfff;
  font-weight:600;
}
.main-heading h2{
  color:#fff;
  font-size:48px;
  font-weight:700;
}

/* ================= CARD ================= */
.services-area-box{
  position:relative;
  height:350px;
  border-radius:12px;
  overflow:hidden;


}

/* DEFAULT CONTENT */
.services-area-inner{
  position:absolute;
  inset:0;
  background:#250578;
  padding:40px;
  z-index:2;
  transition:.4s;
  display: flex;
  flex-direction: column;
  justify-content: end;

 
}
.services-area-inner h4{margin-bottom: 10px;}
.services-area-inner h4,
.services-area-inner p{
  color:#fff;
  position:relative;
  z-index:2;
}

/* SHAPES (STACKED SAME CORNER) */
.shape-big{
  position:absolute;
  top: -80px;
  right: -62px;
  
  opacity:1;
}

.shape-small{
  position:absolute;
  top: -107px;
  right: -66px;
  opacity:1;
}

/* ================= HOVER ================= */
.services-area-hover{
  position:absolute;
  inset:0;
  z-index:3;
}

/* IMAGE (NO SLIDE — ONLY SCALE + OPACITY) */
.thumb{
  position:absolute;
  inset:0;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  opacity:0;
  transition:.6s ease;
}

/* BLUE OVERLAY */
.services-area-hover::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,102,255,0.5) ;
  opacity:0;
  transition:.4s;
}

/* HOVER CONTENT */
.hover-content{
  position:absolute;
  top:0;
  padding:30px;
  color:#fff;
  transform:translateY(20px);
  opacity:0;
  transition:.4s ease .15s;
  z-index:4;
}

.hover-content h4{margin-bottom: 10px;}

/* ================= HOVER EFFECT ================= */

.services-area-box:hover .thumb img{
  transform:scale(1.1);
  opacity:1;
}

.services-area-box:hover .services-area-hover::before{
  opacity:1;
  z-index: 2;
}

.services-area-box:hover .hover-content{
  transform:translateY(0);
  opacity:1;
  z-index: 3;
}

/* DEFAULT CONTENT FADES OUT */
.services-area-box:hover .services-area-inner{
  opacity:0;
}

/* BUTTON */
.site-btn{
  position:relative;
  display:inline-block;
  padding:8px 18px;
  border-radius:20px;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(90deg,#ff4ecd,#7a5cff);
  overflow:hidden;
  z-index:1;
}

.site-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,#7a5cff,#ff4ecd);
  transition:0.4s;
  z-index:-1;
}

.site-btn:hover::before{
  left:0;
}

@media(max-width:769px)
{
    .services-area-box{margin-bottom: 20px;}
}


/* SECTION */
.project-section{
  padding:100px 0;
  background:#fff;
  position: relative;
}

/* TITLE */
.project-heading span{
  color:#6c63ff;
  font-weight:600;
}
.project-heading h2{
  font-size:40px;
  font-weight:700;
}

/* MASONRY */
.project-masonry{
  column-count:3;
  column-gap:20px;
}
@media(max-width:993px){
  .project-masonry{ column-count:2; }
 
}
@media(max-width:576px){
  .project-masonry{ column-count:1; }
}

/* LINK */
.project-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* CARD */
.project-card{
  break-inside:avoid;
  margin-bottom:20px;
  position:relative;
  overflow:hidden;
  border-radius:12px;
  cursor:pointer;
}

/* IMAGE */
.project-img{
  position:relative;
  overflow:hidden;
  height:100%;
}

.project-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1); /* normal state */
  transition:transform .3s ease;
  will-change: transform;
}

/* HEIGHTS */
.tall{ height:420px; }
.medium{ height:320px; }
.small{ height:250px; }

/* OVERLAY */
.project-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.9), transparent);
  opacity:0;
  transition:.4s;
}

/* CONTENT */
.project-content{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:20px;
  color:#fff;
  transform:translateY(40px);
  opacity:0;
  transition:.4s;
}

/* HOVER (ONLY OVERLAY + TEXT) */
.project-link:hover .project-overlay{
  opacity:1;
}
.project-link:hover .project-content{
  transform:translateY(0);
  opacity:1;
}

/* TEXT */
.project-cat{
  font-size:13px;
  color:#ddd;
}
.project-title{
  font-size:18px;
  font-weight:600;
}


.project-shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
  
}


.project-shape-right {
  position: absolute;
  right: 0;
  top: 0;
  opacity: .5;
}

@media(max-width:993px)
{
    .tall{ height:auto; }
.medium{ height:auto; }
.small{ height:auto; }
}


/* ================= SECTION ================= */
.client-strip{
  padding:90px 0;
  position:relative;
  overflow:hidden;

  /* NEW PREMIUM BACKGROUND */
  background:
    radial-gradient(circle at 20% 20%, rgba(99,102,241,0.12), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(16,185,129,0.10), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* DOT PATTERN OVERLAY */
.client-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:0.35;
  z-index:0;
  pointer-events:none;
}

/* ================= CONTENT ABOVE BG ================= */
.client-strip .container{
  position:relative;
  z-index:2;
}

/* ================= TITLE ================= */
.client-head{
  text-align:center;
  margin-bottom:50px;
}

.client-head span{
  color:#777;
  font-weight:600;
  font-size:14px;
}

.client-head h2{
  font-size:36px;
  font-weight:700;
}

/* ================= CARD ================= */
.client-item{
  /* height:150px; */
  padding:18px;
  border-radius:10px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
opacity: 1 !important;
  visibility: visible !important;
  display:flex;
  align-items:center;
  justify-content:center;

  transition:0.3s ease;
}

.client-inner img{
  /* max-height:80px; */
  width:auto;
  filter:grayscale(100%);
  opacity:.75;
  transition:0.3s ease;
}

.client-item:hover{
  transform:translateY(-3px);
}

.client-item:hover img{
  filter:grayscale(0);
  opacity:1;
}

.owl-item.center .client-item{
  transform:translateY(-3px);
}

.owl-item.center img{
  filter:grayscale(0);
  opacity:1;
}

/* ================= NAV ARROWS ================= */
.owl-nav{
  position:absolute;
  top:50%;
  width:100%;
  transform:translateY(-50%);
  z-index:10;
}

.owl-nav button{
  position:absolute;
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:#fff !important;
  box-shadow:0 8px 18px rgba(0,0,0,0.12);
  display:flex !important;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
}

.owl-nav button:hover{
  transform:scale(1.1);
  background:#111 !important;
  color:#fff !important;
}

.owl-nav button svg{
  width:18px;
  height:18px;
  stroke:#111;
}

.owl-nav button:hover svg{
  stroke:#fff;
}

.owl-prev{ left:10px; }
.owl-next{ right:10px; }




/* .client-slider .owl-stage-outer{
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

@media(min-width:992px) and (max-width:1100px){
  .client-strip{
    padding:70px 0 50px;
  }
} */

.owl-stage{
  display:flex;
  align-items:center;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .client-strip{ padding:70px 0; }
  .client-head h2{ font-size:28px; }
}

@media(max-width:576px){
  .client-strip{ padding:60px 0; }
  .client-head h2{ font-size:22px; }

  .owl-nav button{
    width:38px;
    height:38px;
  }
}



/* FOOTER BASE */
.footer{
    position:relative;
    background:#0b0f1a;
    color:#b8c0cc;
    padding:90px 0 30px;
    overflow:hidden;
}

/* BACKGROUND */
.footer-bg img{
    position:absolute;
    width:340px;
    opacity:0.06;
}
.footer-bg .left{top:0;left:0;}
.footer-bg .right{bottom:0;right:0;}

/* HEADINGS */
.footer h5{
    font-size:18px;
    font-weight:600;
    color:#fff;
    margin-bottom:22px;
}

/* TEXT */
.footer p{
    font-size:14px;
    line-height:1.8;
    color:#b8c0cc;
}

/* LINKS (KEEP ORIGINAL HOVER STYLE) */
.f-link a{
    font-size:14px;
    color:#b8c0cc;
    text-decoration:none;
    display:inline-block;
    margin-bottom:10px;
    position:relative;
    transition:0.3s ease;
    text-align: left;
}

/* underline hover (UNCHANGED STYLE) */
.f-link a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:1px;
    background:var(--color2);
    transition:width 0.35s ease;
}

.f-link a:hover{
    color:var(--color2);
}

.f-link a:hover::after{
    width:100%;
}

/* ===== SOCIAL (SQUARE AGINCO STYLE) ===== */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.15);
    color:#b8c0cc;
    font-size:14px;
    border-radius:3px; /* square style */
    position:relative;
    overflow:hidden;
    transition:0.35s ease;
}

/* hover fill animation */
.social-icons a::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:var(--color2);
    top:100%;
    left:0;
    transition:0.35s ease;
    z-index:0;
}

.social-icons a i{
    position:relative;
    z-index:1;
}

.social-icons a:hover::before{
    top:0;
}

.social-icons a:hover{
    color:#000;
    border-color:var(--color2);
}

/* FOOTER BOTTOM */
.footer-bottom{
    margin-top:55px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    color:#9aa3b2;
}

.footer-bottom a{color:#9aa3b2; transition: all .5s ease;}
.footer-bottom a:hover{color:var(--color2)}

@media(max-width:993px)
{
    footer{text-align: center;}
    .footer-logo img{margin-left: auto; margin-right: auto;}
    .f-link{display: flex; justify-content: center; flex-wrap: wrap; column-gap: 20px; margin-bottom: 20px;}
    

.footer h5{margin-bottom: 10px;}
.social-icons{justify-content: center; margin-top: 20px;}
.footer{padding: 30px 0 30px;}
}

@media(max-width:576px)
{
   .project-shape-left, .project-shape-right{display: none;}
}


/* COMMON */
.section{
  padding:60px 0;
}
.final-section{margin-bottom: 120px;}

/* ===== HERO ===== */
.hero-about{
  display:flex;
  align-items:center;
  min-height:90vh;
}
.hero-text{
  padding:60px;
}
.hero-text h1{
  font-size:60px;
  font-weight:700;
  margin-bottom: 10px;
  text-align: left;
}
.hero-text h5{
  font-size:22px;
  font-weight:400;
  margin-bottom: 30px;
    color:var(--color1)
}
.hero-img{
  height:90vh;
  min-height:500px;
  overflow:hidden;
}
.hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== SECTION 2 ===== */
.glass-section{
  background:linear-gradient(135deg,var(--color1),var(--color2));
  position:relative;
  overflow:hidden;
}
.glass-section::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  top:-100px;
  right:-100px;
  filter:blur(80px);
}
.glass-box{
  backdrop-filter: blur(20px);
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  padding:50px;
  border-radius:25px;
  color:#fff;
  line-height:1.9;
  transition:0.4s;
}
.glass-box:hover{
  transform:translateY(-10px);
}
.glass-box h5{font-size: 22px; margin-bottom: 30px;}

/* ===== SECTION 3 ===== */
.overlap-wrap{
  position:relative;
}
.overlap-img img{
  width:100%;
  border-radius:20px;
  transition:0.5s;
}
.overlap-img:hover img{
  transform:scale(1.03);
}
.overlap-text{
  position:absolute;
  bottom:-60px;
  right:40px;
  background:#fff;
  padding:45px;
  border-radius:20px;
  width:60%;
  box-shadow:0 25px 70px rgba(0,0,0,0.12);
  line-height:1.9;
  transition:0.4s;
}
.overlap-text:hover{
  transform:translateY(-10px);
}

/* 🔥 HIGHLIGHT LINE */
.highlight-line{
  font-size:20px;
  font-weight:600;
  color:var(--color1);
  line-height:1.6;
  position:relative;
  padding-left:20px;
  margin-bottom:20px;
}
.highlight-line::before{
  content:'';
  position:absolute;
  left:0;
  top:5px;
  width:6px;
  height:80%;
  background:linear-gradient(var(--color1), var(--color2));
  border-radius:4px;
}

/* FINAL */
.final{
  margin-top:120px;
  background:linear-gradient(135deg,var(--color1),var(--color2));
  color:#fff;
  text-align:center;
  padding:120px;
  border-radius:25px;
  position:relative;
  overflow:hidden;
}
.final::before{
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  top:-80px;
  left:-80px;
  filter:blur(60px);
}

/* MOBILE */
@media(max-width:993px){
  .hero-about{
    flex-direction:column;
    padding-bottom: 60px;
  }
  .hero-img{
    height:300px;
  }
  .hero-text h1{
    font-size:32px;
  }
  .overlap-text{
    position:relative;
    width:100%;
    right:0;
    bottom:0;
    margin-top:20px;
  }
.final-section{margin-bottom: 60px;}
  .final {
  margin-top: 0px;}
  
}

@media(max-width:769px)
{
  .hero-text h1 {
   text-align: center;
  }
  .hero-text{padding: 20px;}
    .hero-about{padding-top: 40px;}
    .glass-box{padding: 20px;}
    .overlap-text{padding: 20px;}
    .final{padding: 30px;}
}



/* HERO */
.hero-intro {
  background: linear-gradient(110deg, #f5f8ff 0%, #eef4ff 100%);
  padding: 5rem 0 4rem;
}
.hero-intro h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--color1), var(--color2));
  -webkit-background-clip: text;
  color: transparent;
}

/* CARD */
.intro-card {
  background: rgba(255,255,255,0.9);
  border-radius: 40px;
  padding: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,51,141,0.1);
}

/* SERVICES */
.service-showcase {
  padding: 80px 0;
}

.service-block {
  margin-bottom: 5rem;
}

.service-image {
  border-radius: 32px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.service-image:hover {
  transform: scale(1.02);
}

.service-content {
  padding: 1rem 0 1rem 2rem;
}

.service-number {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color2);
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(0,51,141,0.2);
  display: inline-block;
}

.service-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  background: linear-gradient(120deg, var(--color1), var(--color2));
  -webkit-background-clip: text;
  color: transparent;
}

.service-content p {
  line-height: 1.7;
  color:#334155;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-intro h1 { font-size: 2.2rem; }
  .service-content { padding: 1rem 0; }
}

/* reveal base */
.reveal {
  opacity: 0;
}


/* HERO */
.hero-contact {
  background: linear-gradient(120deg, #f5f8ff, #eef4ff);
  padding: 70px 0 50px;
  text-align: center;
}
.hero-contact h1 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--color1), var(--color2));
  -webkit-background-clip: text;
  color: transparent;
}

/* SECTION */
.contact-wrapper {
  padding: 60px 0;
}

/* LEFT PANEL */
.info-panel {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #e6ecf5;
}

.badge-contact {
  background: rgba(0,51,141,0.08);
  color: var(--color1);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f6;
}

.info-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,51,141,0.08);
  color: var(--color1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORM */
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #e6ecf5;
}

.form-control {
  border-radius: 14px;
  padding: 10px 14px;
}
.form-control:focus {
  border-color: var(--color2);
  box-shadow: 0 0 0 2px rgba(32,134,196,0.15);
}

/* BUTTON */
.btn-send {
  background: linear-gradient(120deg, var(--color1), var(--color2));
  border: none;
  padding: 10px 26px;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.btn-send::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255,255,255,0.4), transparent);
	transform: skewX(-25deg);
	transition: 0.6s;
}
.btn-send:hover::before {
  left: 130%;
}
.btn-send:hover{color:#fff}

/* MAP */
.map-modern {
  border-radius: 24px;
  overflow: hidden;
  margin-top: 40px;
}
.map-modern iframe {
  width: 100%;
  height: 280px;
}

/* MOBILE */
@media(max-width:768px){
  .hero-contact h1{
    font-size:2rem;
  }
  .info-item{justify-content: center;}
}


 .page-header {
      background: linear-gradient(105deg, #f8fafc 0%, #eef2f9 100%);
      padding: 4rem 0 3rem;
      text-align: center;
    }
    .page-header h1 {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(135deg, #0f2b3d, var(--color1));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }
    .page-header p {
      color: #4a5568;
      max-width: 700px;
      margin: 0.5rem auto 0;
    }
    .clients-section {
      padding: 60px 0;
    }
    .category-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 3px solid var(--color1);
      display: inline-block;
    }
    .client-card {
      background: #fff;
      border-radius: 24px;
      padding: 1.5rem 1rem;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      border: 1px solid #eef2f0;
    }
    .client-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
      border-color: rgba(30,111,92,0.2);
    }
    .client-logo-img {
      /* width: 80px;
      height: 80px; */
      /* margin: 0 auto 1rem; */
      display: block;
      /* border-radius: 50%; */
      object-fit: cover;
      /* background: #f0f7f4; */
      transition: 0.2s;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }
    .client-card:hover .client-logo-img {
      transform: scale(1.02);
      box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    }
    .client-name {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--color1);
      line-height: 1.4;
    }


    @media (max-width: 768px) {
      .page-header h1 { font-size: 1.8rem; }
      .category-title { font-size: 1.5rem; }
      .client-logo-img { width: 65px; height: 65px; }
    }
    .client-reveal {
      opacity: 0;
      transform: translateY(25px);
      transition: all 0.7s ease;
    }
    .client-reveal.active {
      opacity: 1;
      transform: translateY(0);
    }


    .gallery-front {
      padding: 60px 0;
    }
    .category-card {
      background: #fff;
      border-radius: 32px;
      overflow: hidden;
      transition: all 0.35s ease;
      box-shadow: 0 15px 30px -12px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.03);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 40px -16px rgba(0,0,0,0.12);
    }
    .card-img {
      height: auto;
      object-fit: cover;
      width: 100%;
      transition: transform 0.4s;
    }
    .category-card:hover .card-img {
      transform: scale(1.02);
    }
    .card-body {
      padding: 1.8rem;
    }
    .card-icon {
      width: 55px;
      height: 55px;
      background: #f0f7f4;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--color1);
      margin-bottom: 1rem;
    }
    .card-title {
      font-size: 1.7rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .card-text {
      color: #5a6e7a;
      line-height: 1.5;
    }
   .arrow-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color1);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.arrow-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* underline effect */
.arrow-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--color1);
  transition: width 0.3s ease;
}

/* hover effects */
.arrow-link:hover {
  color: #000; /* change if needed */
}

.arrow-link:hover i {
  transform: translateX(6px);
}

.arrow-link:hover::after {
  width: 100%;
}
    
    @media (max-width: 768px) {
     
      .card-title { font-size: 1.4rem; }
    }
    .gallery-reveal {
      opacity: 0;
      transform: translateY(25px);
      transition: all 0.7s ease;
    }
    .gallery-reveal.active { opacity: 1; transform: translateY(0); }
  



    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      padding: 3rem 0;
    }
    .gallery-item {
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 10px 20px -8px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .gallery-item img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .gallery-item:hover img { transform: scale(1.03); }
 .btn-back {
  background: var(--color2);
  color: #fff;
  border-radius: 40px;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* icon animation */
.btn-back i {
  transition: transform 0.3s ease;
}

/* hover effects */
.btn-back:hover {
  background: var(--color1); /* or darker shade of color2 */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* arrow slides left */
.btn-back:hover i {
  transform: translateX(-5px);
}


      @media (max-width: 768px) {
      .gallery-grid { gap: 1rem; }
      .gallery-item img { height: 220px; }
    }

    .fancybox__container{z-index: 2001;}


    .advertising-services {
    background: #f7f6fa;
}

.ad-service {
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #e8e5ed;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all .3s ease;
}

.ad-service h4 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: #25212d;
    transition: .3s ease;
}

.ad-service:hover {
    background: #6c3df4;
    border-color: #6c3df4;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(108, 61, 244, .15);
}

.ad-service:hover h4 {
    color: #fff;
}

@media (max-width: 575px) {
    .ad-service {
        padding: 20px;
    }

    .ad-service h4 {
        font-size: 16px;
    }
}