@charset "utf-8";
/* This is My Custom CSS */
/* 
   Author: Mangal Mohanan,
   Author URL:  www.mangalmohanan.com,
   
   Site Name: Site Title,   
   Site Description: Site Field,
   Template: Responsive,
   Framework: Bootstrap v5.3.3  
*/

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #32383b;
    /* word-break: break-all; */ 
}


/* Typography CSS starts */
@font-face {
    font-family: 'Adelle Sans';
    src: url('../fonts/AdelleSans-Semibold.woff2') format('woff2'),
        url('../fonts/AdelleSans-Semibold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Adelle Sans';
    src: url('../fonts/AdelleSans-Thin.woff2') format('woff2'),
        url('../fonts/AdelleSans-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Adelle Sans';
    src: url('../fonts/AdelleSans-Light.woff2') format('woff2'),
        url('../fonts/AdelleSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ethnocentric Rg';
    src: url('../fonts/EthnocentricRg-Regular.woff2') format('woff2'),
        url('../fonts/EthnocentricRg-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ethnocentric Rg';
    src: url('../fonts/EthnocentricRg-Italic.woff2') format('woff2'),
        url('../fonts/EthnocentricRg-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-body: 'Adelle Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
}



/* Typography CSS Ends */

.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(250,250,250,0.85) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar.scrolled:hover{
    background-color: rgba(250,250,250,0.96) !important;
}

/* Home Page Styles Starts */
/* Navigation Bar Starts */
.navbar-nav{
    gap: 20px;
}
.navbar-brand{
    font-family: 'Ethnocentric Rg';
    font-weight: normal;
    font-style: normal;
    font-size: 34.83px;
    color: #fff;
}
.navbar-brand img{
    width: 145px;
    height: auto;
    object-fit: contain;
}
.navbar-nav li a{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    color: rgba(255,255,255,0.6)
}
.navbar-nav li a:hover,
.navbar-nav li a:focus,
.navbar-nav li a.active {
    color: rgba(255,255,255,1) !important;
}
.btn-contact {
    font-family: var(--font-body);
    font-size: 14;
    font-weight: 500;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50px;
    padding: 7px 25px;
    background: transparent; 
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-contact:hover{
     background: linear-gradient(
    -45deg,
    #0000fe,
    #0066ff,
    #008dff,
    #00a6ff,
    #00bbe7
);
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}
.navbar-brand{
    position: relative;
    padding: 0;
    line-height: 0;
}
.logo-blue{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.navbar.scrolled .logo-blue{
    opacity: 1;
    transition: opacity 0.3s ease;
}
.navbar.scrolled  .nav-link,
.navbar.scrolled  .nav-link.active{
    color: #000 !important;
}
.navbar.scrolled .btn-contact {
 background: linear-gradient(
    -45deg,
    #0000fe,
    #0066ff,
    #008dff,
    #00a6ff,
    #00bbe7
);
    background-size: 400% 400%;
    animation: gradientMove 10s ease infinite;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.mobile-button-burger{
    display: none;
}

/* Menu Icons Starts */
#nav-icon {
  width: 44px;
  height: 33px;
  position: relative; 
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
#nav-icon span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}
#nav-icon span:nth-child(1), #nav-icon span:nth-child(2) {
  top: 0px;
}
#nav-icon span:nth-child(3), #nav-icon span:nth-child(4) {
  top: 11px;
}
#nav-icon span:nth-child(5), #nav-icon span:nth-child(6) {
  top: 23px;
}
#nav-icon.open span:nth-child(1),#nav-icon.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(2),#nav-icon.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}
#nav-icon.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
#nav-icon.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
#nav-icon.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
#nav-icon.open span:nth-child(5) {
  left: 5px;
  top: 19px;
}
#nav-icon.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 19px;
}
/* Menu Icons Ends  */

/* Navigation Bar Ends */

/* Banner */
.banner-section{
    background-size: cover !important;
    background-position: center !important;
    min-height: 100vh;
    height: 910px;
}
.banner-section .container,
.banner-section .container .row{
    min-height: 100vh;
    height: 910px;
}
.banner-image-wrap img{
    height: 90vh;
}
.banner-tag{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 21px;
    color: #fff;
    position: relative;
    padding-left: 50px;
}
.banner-tag:before{
    content: '';
    display: inline-block;
    width: 33px;
    height: 2px;
    background-color: #fff; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.banner-heading{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 60px;
    color: #fff;
}
.banner-body{
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 21px;
    color: #fff; 
}
.banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.banner-buttons .btn-works{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    background: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12.48px 32px;
    text-decoration: none;
    color: #000000;     
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.banner-buttons .btn-works:hover {  
    background: #e8ecf8;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(255,255,255,0.18);
    color: #0a1535;
}
.banner-buttons .btn-email{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    padding: 8px 8px 8px 22.4px;
    text-decoration: none;
}
.banner-buttons .btn-email:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.9);
}
.btn-email-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    transition: background .3s, transform .3s;
    margin-left: 10px;
}
 
.btn-email-icon i {
    font-size: 16px;
      color: #fff;
}
.btn-email:hover  .btn-email-icon{ 
  background: rgba(255,255,255,.18);
  transform: rotate(45deg);
} 
/* Banner Ends */

main{
    background: #000;
}

/* About us Starts  */
.about-section{
    background: #000;
}
.about-section-box{
    padding: 70px;
    border: 1px solid #0d3e6e;
    border-radius: 50px;
    margin-top: 100px;
    margin-bottom: 160px;
}
.about-section-box h2{
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 22px;
    color: #fff;
    margin-bottom: 90px;
}
.about-section-box h2 .blue-text{
    font-weight: 500;
    color: #1e8ffe;
}
.about-section-box h3{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 40px;
    color: #fff;
    margin-bottom: 25px
}
.about-section-box h3 .light-text{ 
    color: #a9a9a9;
}
.about-section-box p{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 23px;
    color: #fff;
}
.social-networks {
    display: inline-block;
    position: absolute !important;
    top: 70px;
    right: 70px;
    margin-bottom: 0;
    font-size: 0;
}
.social-networks li{
    display: inline-block;
    margin-left:  5px;
    margin-right:  5px;
}
.social-networks li a{
    background: #fff;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: inline-block;
    text-align: center; 
    position: relative;
}
.social-networks li a img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.social-networks li a {
    transition: 
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.social-networks li a:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* Brand colors on hover */
.social-networks li:nth-child(1) a.fb:hover {
    background: #1877F2;
}
.social-networks li:nth-child(2) a.inst:hover {
    background: radial-gradient(circle at 30% 110%, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); 
} 
.social-networks li:nth-child(3) a.link:hover { 
    background: #0A66C2; 
} 
.social-networks li:nth-child(4) a.pint:hover { 
    background: #E60023; 
}
.social-networks li:nth-child(5) a.beha:hover {
    background: #1769FF;
}
.social-networks li a img { 
    transition: filter 0.3s ease, transform 0.3s ease;
}
.social-networks li a:hover img {
    filter: brightness(0) invert(1); 
}
/* Ripple ring */
.social-networks li a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
}
.social-networks li a:hover::after {
    animation: ripple 0.5s ease-out forwards;
}
@keyframes ripple {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}
.stats-section{
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 90px;
}
.years-label{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0;
    position: relative;
}
.years-label .text-over {
    font-size: 93px;
    margin-right: 90px;
    line-height: 93px;
    color: #fff;
}
.years-label .num {
    font-size: 145px;
    position: absolute;
    right: 15px;
    top: -25px;
    line-height: 145px;
    /* Animated gradient on the big number */
    background: linear-gradient(135deg, #5aabff 0%, #2260d8 50%, #a0cfff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 3s ease-in-out infinite alternate;

     /* Added pulse animation */
    animation: 
        numberGlow 3s ease-in-out infinite alternate,
        pulseNumber 2s ease-in-out infinite;
}
@keyframes numberGlow {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Pulse effect */
@keyframes pulseNumber {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(90, 171, 255, 0.2));
    }

    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 18px rgba(90, 171, 255, 0.6));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(90, 171, 255, 0.2));
    }
}

.years-label .text-years {
    font-size: 93px;
    margin-left: 0;
    line-height: 93px;
    color: #fff;
}
.stats-section .divider {
    background: #a6aaae;
    width: 2px;
    display: inline-block;
    height: 250px;
    margin-left: 90px;
}
.col-stats {
    position: relative;
    z-index: 1;
    display: flex; 
    padding-left: 60px;
    flex: 1 1 0;
    justify-content: space-around;
    gap: 0;
}
.stat-item{
    display: flex;
    flex-direction: column;
    gap: 6px; 
}
.stat-value{
    font-family: var(--font-body);
    font-size: 104px;
    font-weight: 300;
    line-height: 1; 
    background: linear-gradient(135deg, #6dbeff 0%, #2f6fd8 40%, #90c8ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 4s ease-in-out infinite alternate;
}
.stat-item:nth-child(2) .stat-value {
    animation-delay: 1s;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 25px;
    font-weight: 300; 
    color: #fff; 
    display: flex;
    align-items: center;
    gap: 8px;
}
.stat-label::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4a90e2;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(74,144,226,0.8);
    animation: dotPulse 2s ease-in-out infinite;
}
.stat-item:nth-child(2) .stat-label::before {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(74,144,226,0.6); }
    50% { box-shadow: 0 0 14px rgba(74,144,226,1); }
}
.stat-bar {
    width: 137%;
    height: 2px;
    background: linear-gradient(to right, rgba(74,144,226,0.6), transparent);
    position: relative;
    overflow: hidden;
}
.stat-bar:after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(to right, transparent, #7ab8ff, transparent);
    animation: barFlow 2.5s ease-in-out infinite;
}
 .stat-item:nth-child(2) .stat-bar:after {
    animation-delay: 0.7s;
}
@keyframes barFlow {
    0%   { left: -100%; }
    100% { left: 100%; }
}
.about-section-box {
    position: relative;
    overflow: hidden;
}
/* blurred gradient layer */
.----about-section-box:before {
    content: "";
    position: absolute;
    inset: 0;
    /* gradient (black replaced with transparent) */
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),   /* transparent instead of black */
    rgba(0, 0, 0, 0),   
    rgba(25, 120, 220, 0.4)  /* blue visible */
    ); 
    animation: gradientBreath 6s ease-in-out infinite;
    z-index: 0; 
}
@keyframes gradientBreath {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0.4;
    }
}
.about-section-box > * {
    position: relative;
    z-index: 1; 
} 
/* About us Ends */


/* Expertise in Starts  */
.expertise-section {
  /* padding-top: 55px;
  padding-bottom: 55px; */
}
.expertise-heading h4{
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 93px;
    color: #fff; 
    line-height: 80px; 
    margin-bottom: 35px;
} 
.expertise-heading h4 .blue-gredient-text{
    background: linear-gradient(135deg, #6dbeff 0%, #2f6fd8 40%, #90c8ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 4s ease-in-out infinite alternate;
}
.expertise-services-row{
    gap: 30px;
}
.service-item{
    position: relative;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.20);
} 
.service-inner {
    display: flex;
    justify-content: end;
    gap: 35px;
    align-items: center;
}
.service-num {  
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 80px;
    color: rgba(255,255,255,0.20);
    line-height: 80px;
    transition: transform 0.35s ease;
}
.service-name{
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 40px;
    color: rgba(255,255,255,0.20);
    transition: transform 0.35s ease;
}
.service-tag{
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 100;
    color: rgba(255,255,255,0.20);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 15px;
    padding: 4px 12px;
    position: absolute;
    bottom: 10px;
    right: 0;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.service-item:hover .service-tag {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    color: #fff;
}
.service-item:hover .service-name,
.service-item:hover .service-num {
    color: rgba(255,255,255,1);
}
.top-align-col{
    margin-top: -160px;
}
/* Expertise in Ends */

/* Our Works Starts*/
.our-works-section {
  margin-top: 160px;
}
.our-works-section.our-members-section {
  margin-top: 100px;
}
.our-works-heading {
  display: flex;
}
.our-works-heading h5{
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 93px;
    color: #fff;
    line-height: 80px;
    margin-bottom: 0;
}
.our-works-heading  .blue-gredient-text{
    background: linear-gradient(135deg, #6dbeff 0%, #2f6fd8 40%, #90c8ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 4s ease-in-out infinite alternate;
}
.our-works-heading h4{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 40px;
    color: rgba(255,255,255,0.20);
    align-self: flex-end !important;
    margin-bottom: 0;
}

/* Grid Layout Starts */
 .panel {
    position: relative;
    z-index: 1;
    margin: 0 0 40px 0;
    background: linear-gradient(145deg, #0f2742 0%, #081a30 100%);
    border-radius: 28px;
    padding: 28px 28px 50px 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
    opacity: 1;
    transform: translateY(40px);
    animation: fadeUp .9s .35s forwards;
}
.grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}
.card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #0e2236;
    transform: translateY(0) scale(1);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 24px 50px rgba(0,0,0,.6), 0 0 0 1.5px rgba(74,163,245,.25);
    z-index: 10;
}
.card img,
.stagger-card img{
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
.card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.card:hover .card-img {
    transform: scale(1.06);
}
/* specific spans */
.c1 {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 3/4;
}
.c2 {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.c2a {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.c2b {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.c3 {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: 3/4;
    background: #f5f0ea;
}
.c4 {
    grid-column: 4;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.c4a {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.c4b {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.c5 {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 3/4;
    background: #f0f4f8;
}
.c6 {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.c6a {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.c6b {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.c7 {
    grid-column: 3;
    grid-row: 2;
    aspect-ratio: 3/4;
    background: #0a0a0a;
}
.c8 {
    grid-column: 4;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.c8a {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.c8b {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
} 
.c2a, .c2b, .c4a, .c4b, .c6a, .c6b, .c8a, .c8b {
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.c2a:hover, .c2b:hover, .c4a:hover, .c4b:hover,
.c6a:hover, .c6b:hover, .c8a:hover, .c8b:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 36px rgba(0,0,0,.55);
    z-index: 10;
}
.stagger-card.c2,
.stagger-card.c4,
.stagger-card.c6,
.stagger-card.c8{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.stagger-card.c2 .c2a,
.stagger-card.c2 .c2b,
.stagger-card.c4 .c4a,
.stagger-card.c4 .c4b,
.stagger-card.c6 .c6a,
.stagger-card.c6 .c6b,
.stagger-card.c8 .c8a{
    position: relative;
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
} 
.label-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .3s;
}

.slider-nav {
  display: none;
  /* shown via media query */
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 0;
  position: static;
  z-index: 99;
}
.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background .22s, transform .18s;
}
.arrow-btn:active {
  transform: scale(.88);
  background: rgba(255, 255, 255, .2)
}
.arrow-btn:disabled {
  opacity: .25;
  pointer-events: none
}
.slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center
}
.client-feedback-section {
  padding: 80px 35px 30px 35px;
}
.about-section-box.footer-section-box {
  margin-top: 60px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, width .3s, transform .3s;
}
.dot.active {
    background: #4aa3f5;
    width: 20px;
    transform: none
}
.explore-btn-outer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-bottom: 40px; 
    opacity: 1; 
}
.explore-btn,
.works-explore-btn {
    margin-top: -26px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #111c2e 0%, #0a1525 100%);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 5px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    position: relative;
    overflow: hidden;
}
@keyframes gradientMove {
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}
.explore-btn:before,
.works-explore-btn:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,163,245,.12), transparent);
    opacity: 0;
    transition: opacity .4s;
}
.explore-btn:hover:before,
.works-explore-btn:hover:before {
  opacity: 1;
}
.explore-btn-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, transform .3s;
}
.explore-btn:hover .explore-btn-circle,
.works-explore-btn:hover .explore-btn-circle {
    background: rgba(255,255,255,.18);
    transform: rotate(45deg);
}
/* Grid Layout Starts */

/* Our Works Ends */

/* Our Members Starts */
.our-members-inn {
  padding: 0;
}
.our-members-slide{
    padding: 20px;
    text-align: center;
}
.our-members-slide-inn{
    
    overflow: hidden;
    position: relative;
}
.our-members-slide img{
    width: 100%;
    border-radius: 30px;
    height: auto;
}
.our-members-name {
  position: relative;
 
  padding: 10px;
  text-align: center;
  /*background: rgba(0,0,0,.8);*/
  /*overflow: hidden;*/
}
.our-members-name h4{
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: static;
    z-index: 99;
}
.our-members-name span{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    color: #f1f1f1;
    position: static;
    z-index: 99;
}
/* Our Members Ends */

/* Client Feedback Starts */
.client-feedback-inn {
    padding: 0;
}
.client-feedback-section {
    padding: 60px 0;
}
.client-feedback-section{
    padding-top: 130px;
}
.client-feedback-section .expertise-heading h4{
    text-align: right;
}
.client-feedback-slide{
    padding: 0 25px;
}
.client-feedback-slide-inn{ 
background-image: linear-gradient(
    to right top,
    rgba(15, 39, 66, 0.5),
    rgba(0, 52, 100, 0.5),
    rgba(0, 65, 135, 0.5),
    rgba(0, 78, 171, 0.5),
    rgba(0, 89, 207, 0.5),
    rgba(0, 88, 205, 0.5),
    rgba(0, 86, 203, 0.5),
    rgba(0, 85, 201, 0.5),
    rgba(0, 71, 161, 0.5),
    rgba(0, 56, 122, 0.5),
    rgba(0, 41, 84, 0.5),
    rgba(8, 26, 48, 0.5)
);
    border-radius: 30px;
    padding: 30px;
}
.feedback-box-text p{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    color: #fff;

}
.feedback-box-text svg {
  width: 50px;
  height: 50px; 
  fill: #a4c0ca;
}
.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.client-img img { 
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.feedback-box-img {
  display: flex;
}
.client-name h4{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}
.client-name span{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: #ccc;
}
.client-name {
    -ms-flex-item-align: center !important;
    align-self: center !important;
    margin-left: 20px;
}
.slick-arrow:before,
.slick-arrow:after {
    display: none;
}
.slick-arrow .icon-left,
.slick-arrow .icon-right {
    font-size: 30px;
    color: #fff;
}
.slick-next {
  right: 0;
}
/* Client Feedback Ends */
 
/* Footer Starts */
footer{
    background: #000;
    padding: 40px 0;
}
.footer-section-box img {
  width: 145px;
  height: auto;
  object-fit: contain;
}
.footer-menu{
    margin-bottom: 0;
    padding-left: 0;
}
.footer-menu li{
    list-style: none;
    margin-bottom: 14px;
}
.footer-menu li:last-child{
    margin-bottom: 0;
}
.footer-menu li a{
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    transition: color 0.25s ease;
    text-decoration: none;
}
.footer-menu li a:hover{
    color: rgba(255,255,255,1);
}
.explore-btn.behance-btn {
  padding: 8px 20px;
  margin: 0;
}
.footer-section-box .social-networks {
  position: relative !important;
  top: inherit;
  right: inherit;
  margin-top: 25px;
}
.footer-bottom-row{
    border-top: 1px solid rgba(255,255,255,0.20);
    padding-top: 30px;
    margin-top: 30px;
}
.footer-bottom-row .year{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
    width: inherit;
}
.footer-bottom-row .footer-menu{
    width: inherit;
    display: flex !important;
}
.footer-bottom-row .footer-menu li{
    margin: 0 15px;
}
.footer-bottom-row .footer-menu li:last-child{
    margin-right: 0;
}
.footer-bottom-row .footer-menu li a{
    font-size: 16px;
}
.about-section-box.footer-section-box {
  margin-bottom: 0;
  padding: 70px 70px 30px 70px;
}
.about-section-box{
    position: relative;
    overflow: hidden;
    background: #02060d;
    isolation: isolate;
}

/* Aurora Layer */
.---about-section-box.footer-section-box::before{
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 0;

    background:
    conic-gradient(
        from 0deg at 50% 50%,
        rgba(25,120,220,0.0),
        rgba(25,120,220,0.55),
        rgba(0,200,255,0.35),
        rgba(25,120,220,0.0),
        rgba(25,120,220,0.45),
        rgba(0,140,255,0.2),
        rgba(25,120,220,0.0)
    );

    filter: blur(70px);
    opacity: 0.9;

    animation:
    auroraRotate 18s linear infinite,
    auroraScale 10s ease-in-out infinite alternate;
}

/* Moving Energy Blob */
.---about-section-box.footer-section-box::after{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: 0;

    background:
    radial-gradient(
        circle,
        rgba(0,180,255,0.45) 0%,
        rgba(25,120,220,0.2) 40%,
        transparent 70%
    );

    filter: blur(50px);

    animation:
    energyMove 14s ease-in-out infinite alternate;
}

/* Keep content above animation */
.about-section-box.footer-section-box .about-section-box > *{
    position: relative;
    z-index: 2;
}

/* Aurora rotation */
@keyframes auroraRotate{
    0%{
        transform: rotate(0deg);
    }

    100%{
        transform: rotate(360deg);
    }
}

/* Breathing zoom */
@keyframes auroraScale{
    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.2);
    }
}

/* Floating blob movement */
@keyframes energyMove{
    0%{
        top: -10%;
        left: -10%;
    }

    25%{
        top: 20%;
        left: 60%;
    }

    50%{
        top: 60%;
        left: 20%;
    }

    75%{
        top: 10%;
        left: 80%;
    }

    100%{
        top: 70%;
        left: 50%;
    }
}
/* Footer Ends */

.our-works-section .icon-left, 
.our-works-section .icon-left::before, 
.our-works-section .icon-right, 
.our-works-section .icon-right::before,
.client-feedback-section .icon-left,
.client-feedback-section .icon-left::before,
.client-feedback-section .icon-right,
.client-feedback-section .icon-right::before {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.slick-prev {
  left: 0;
}
/* Home Page Styles Ends */


/* Our Works Page Starts */
.inner-banner-section{
    height: 250px;
    background-size: cover !important;
    background-position: center center !important;
} 
.inner-banner-section,
.inner-banner-section .container,
.inner-banner-section .container .row{
    position: relative;
    height: 250px;
}
.inner-banner-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%) translateY(-60%);
}
.inner-banner-text h3{
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 0;
}
.our-works-gallery-section {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}
.our-works-gallery-section .gallery-description{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 30px;
    line-height: 35px;
    color: rgba(255,255,255,0.20);
}  

/* Our Works Grid Fancy Box Starts */
 .gallery-section[data-layout="full"] .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(10px, 1.4vw, 20px);
}
@media (max-width: 1024px) {
    .gallery-section[data-layout="full"] .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 600px) {
    .gallery-section[data-layout="full"] .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
.gallery-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: #111520;
    border: 1px solid rgba(255,255,255,0.055);
    cursor: pointer;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s, transform 0.6s, box-shadow 0.4s;
}
.gallery-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px #3b82f6;
}
.gallery-link {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    z-index: 0;
    pointer-events: none;
}
.gallery-link.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    pointer-events: auto;
}
.img-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-skeleton {
    position: absolute;
    inset: 0;
    background: #1a1f2c;
    z-index: 5;
    transition: opacity 0.5s;
}
.card-skeleton.hidden {
    opacity: 0;
    pointer-events: none;
}
.gallery-card[data-effect="fade"] .gallery-link {
    transition: opacity 0.9s ease, transform 1.2s ease;
}
.gallery-card[data-effect="fade"] .gallery-link.leaving {
    opacity: 0 !important;
    transform: scale(1.05);
}
.gallery-card[data-effect="zoom"] .gallery-link {
    transition: opacity 0.8s ease, transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card[data-effect="zoom"] .gallery-link.leaving {
    opacity: 0 !important;
    transform: scale(1.2);
}
.gallery-card[data-effect="slide-up"] .gallery-link {
    transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card[data-effect="slide-up"] .gallery-link.entering {
    transform: translateY(30px);
    opacity: 0;
}
.gallery-card[data-effect="slide-up"] .gallery-link.leaving {
    transform: translateY(-30px);
    opacity: 0 !important;
}
.gallery-card[data-effect="slide-right"] .gallery-link {
    transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card[data-effect="slide-right"] .gallery-link.entering {
    transform: translateX(-30px);
    opacity: 0;
}
.gallery-card[data-effect="slide-right"] .gallery-link.leaving {
    transform: translateX(30px);
    opacity: 0 !important;
}
.gallery-card[data-effect="blur"] .gallery-link {
    transition: opacity 1s ease, filter 1s ease, transform 1.2s ease;
}
.gallery-card[data-effect="blur"] .gallery-link.entering {
    filter: blur(12px);
    opacity: 0;
    transform: scale(1.04);
}
.gallery-card[data-effect="blur"] .gallery-link.leaving {
    filter: blur(12px);
    opacity: 0 !important;
}
.gallery-card[data-effect="scale"] .gallery-link {
    transition: opacity 0.8s ease, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-card[data-effect="scale"] .gallery-link.entering {
    opacity: 0;
    transform: scale(0.85);
}
.gallery-card[data-effect="scale"] .gallery-link.leaving {
    opacity: 0 !important;
    transform: scale(1.12);
}
.gallery-card[data-effect="flip-3d"] .gallery-link {
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}
.gallery-card[data-effect="flip-3d"] .gallery-link.entering {
    opacity: 0;
    transform: rotateY(90deg) scale(0.9);
}
.gallery-card[data-effect="flip-3d"] .gallery-link.leaving {
    opacity: 0 !important;
    transform: rotateY(-90deg) scale(0.9);
}
.gallery-card[data-effect="clip-circle"] .gallery-link {
    transition: opacity 1s ease, clip-path 1.2s ease, transform 1.2s ease;
}
.gallery-card[data-effect="clip-circle"] .gallery-link.entering {
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
}
.gallery-card[data-effect="clip-circle"] .gallery-link.leaving {
    opacity: 0 !important;
    clip-path: circle(100% at 50% 50%);
}
.gallery-card[data-effect="clip-circle"] .gallery-link.active {
    clip-path: circle(150% at 50% 50%);
}
.gallery-card[data-effect="spin-scale"] .gallery-link {
    transition: opacity 0.8s ease, transform 1.4s ease;
}
.gallery-card[data-effect="spin-scale"] .gallery-link.entering {
    opacity: 0;
    transform: rotate(15deg) scale(1.2);
}
.gallery-card[data-effect="spin-scale"] .gallery-link.leaving {
    opacity: 0 !important;
    transform: rotate(-15deg) scale(0.8);
}
.gallery-card[data-effect="wipe-diagonal"] .gallery-link {
    transition: opacity 0.9s ease, clip-path 1s ease, transform 1s ease;
}
.gallery-card[data-effect="wipe-diagonal"] .gallery-link.entering {
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.gallery-card[data-effect="wipe-diagonal"] .gallery-link.leaving {
    opacity: 0 !important;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.gallery-card[data-effect="wipe-diagonal"] .gallery-link.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
 
.fancybox__image {
    object-fit: contain !important;
    max-width: 100vw !important;
    max-height: 100dvh !important;
    width: auto !important;
    height: auto !important;
}
.fancybox__slide {
    padding: 44px 8px 8px !important;
}
@media (max-width: 600px) {
  .fancybox__slide {
    padding: 52px 4px 4px !important;
  }
  .fancybox__toolbar {
    padding: 4px !important;
  }
}
.gallery-section{
    margin-top: 30px;
}
.explore-divider{
    font-weight: 300;
    font-size: 35px;
    line-height: 35px;
    color: rgba(255,255,255,0.20);
    text-align: center;
    margin: 70px 0;
}

/* small gallery */
.split-inner {
    display: flex;
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
}
[data-layout="split-right"] .split-inner {  

}
[data-layout="split-right"] .split-inner .split-info{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap: 6px; 
}
.split-cards {
    flex: 0 0 auto;
    width: clamp(280px, 46%, 560px);
}
.split-cards .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 1.4vw, 20px);
}
.split-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.split-title { 
    font-weight: 300;
    font-size: 30px;
    color: rgba(255,255,255,1); 
    margin-bottom: 0;
}
.split-desc {
    font-weight: 100;
    font-size: 20px;
    color: rgba(255,255,255,0.60); 
}
.split-subtitle{
    font-weight: 100;
    font-size: 18px;
    color: rgba(255,255,255,0.40); 
    margin-bottom: 0;
}
.split-cta{
    display: none;
}
@media (max-width: 700px) {
    .split-inner { flex-direction: column !important; }
    .split-cards { width: 100%; }
    /* mobile 4 cards → 2×2 */
    .split-cards .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .split-desc { max-width: 100%; }
    .split-inner .split-cards {
        order: 2;
    }
    .split-inner .split-info{
        order: 1;
    }
}
@media only screen and (min-width: 699px) and (max-width: 991px) {
    .split-inner { flex-direction: column !important; }
    .split-cards { width: 100%; }
    .split-cards .gallery-grid { grid-template-columns: repeat(3, 1fr); } 
    .split-inner .split-cards {
        order: 2;
    }
    .split-inner .split-info{
        order: 1;
    }
}
/* Our Works Grid Fancy Box Ends */


/* Our Works Page Ends */

/*  Terms Conditions Starts */
.terms-conditions-inn{
  position: relative;
  overflow: hidden;
  background: #02060d;
  isolation: isolate;
  padding: 70px;
  border: 1px solid #0d3e6e;
  border-radius: 50px;
  margin-top: 55px;
  margin-bottom: 55px;
}
.terms-conditions-inn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(25, 120, 220, 0.4) );
  animation: gradienttopBreath 6s ease-in-out infinite;
  z-index: -1;
}
@keyframes gradienttopBreath {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0.4;
    }
}
.terms-conditions-inn p,
.terms-conditions-inn ol li{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    color: #fff;
}
.terms-conditions-inn ol li{
    margin-bottom: 15px;
}
.terms-conditions-inn ul li{
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}
.terms-conditions-inn p a{
    color: #fff;
}
 /* Terms Conditions Ends */
 
 /* FAQ Starts */
 .faq-section-outer {
    margin-top: 65px; 
}
.accordion-item { 
    /* background: linear-gradient( to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(25, 120, 220, 0.4) ); */
    background: rgba(250,250,250,.1);
    border: 1px solid #011f3c;
    border-radius: 10px !important;
    margin-bottom: 20px;
    overflow: hidden;
      transition: 0.4s ease;
}

.accordion-item:hover {
  background: rgba(25, 120, 220, 0.4);
} 
.accordion-collapse.collapse {
    /* background: linear-gradient( to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(25, 120, 220, 0.4) ); */
}
.accordion-button:not(.collapsed){
    border: none !important;
}
.accordion-button {
    background: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    padding: 16px 20px;
    box-shadow: none !important;
    border-radius: 10px !important;
    gap: 12px;
}
.accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 10px 10px 0 0 !important;
}
.accordion-button::after {
    content: '\e828';
    font-family: fontello;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    background-image: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
}
.accordion-body {
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    line-height: 25px;
    padding: 0 20px 20px 20px;
}
.accordion-body ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}
.accordion-body ul li {
    margin-bottom: 4px;
}
.accordion-body a {
    color: #fff;
    font-weight: 300;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.q-number {
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    border-radius: 50%; 
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    margin-right: 2px;
} 
 /* FAQ Ends */

 .client-feedback-slide-inn{
  background: rgba(250,250,250,.1);
}
.about-section-box.footer-section-box{ 
    background: rgba(250,250,250,.1);
    border: none;
}
.about-section-box.footer-section-box:after{
  background: none !important;
}
.about-section-box.footer-section-box:before{
 background: none !important;
}
.our-works-gallery-section{
    position: relative;
}
.our-works-gallery-section .expertise-heading {
  position: static;
  z-index: 9;
}
.top-gredient-left{ 
    width: 700px;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0; 
    z-index: 0;
    overflow: hidden;
}
.top-gredient-center{
    width: 700px;
    height: 700px;
    position: absolute;
    top: 50%;
    right: 0; 
    z-index: 0;
    overflow: hidden;
}
.top-gredient-bottom{
    width: 700px;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0; 
    z-index: 0;
    overflow: hidden;
}
.top-gredient-left:before,
.top-gredient-center:before,
.top-gredient-bottom:before{
    content: "";
    position: absolute;
    top: 5%;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
    background: radial-gradient( circle, rgba(0,180,255,0.45) 0%, rgba(25,120,220,0.2) 40%, transparent 70% );
    filter: blur(50px); 
    height: 100%;
    width: 100%;
    filter: blur(60px);
    will-change: transform;
    animation: smoothMove 18s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}
@keyframes smoothMove {

    0%{
        transform: translate3d(0px, 0px, 0px) scale(1);
    }

    25%{
        transform: translate3d(60px, 30px, 0px) scale(1.04);
    }

    50%{
        transform: translate3d(120px, -20px, 0px) scale(1.08);
    }

    75%{
        transform: translate3d(40px, 50px, 0px) scale(1.03);
    }

    100%{
        transform: translate3d(-20px, 10px, 0px) scale(1);
    }
}
.top-gredient-center:before{
    left:  inherit;
    right: -150px;
}
footer{
    position: relative;
    overflow: hidden;
}
 
/* Contact Us Starts */
.contact-section-outer{
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}
.contact-description{
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    color: rgba(255,255,255,0.20);
}

.contact-section-left li span i{
    color: rgba(255,255,255,0.20);
}
.contact-section-left li a {
  font-size: 20px;
}
.contact-sec-form{
    position: relative;
    border-radius: 30px;
    padding: 30px 15px;
    overflow: hidden;
    border: 1px solid #0d3e6e;
    margin: 0;
}
.contact-sec-form:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to bottom, rgba(0, 0, 0, 0),  rgba(25, 120, 220, 0.4) , rgba(25, 120, 220, 0.4) );
  animation: gradientBreath 6s ease-in-out infinite;
  z-index: 0;
}
@keyframes gradientBreath {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0.4;
    }
}
.contact-section-left {
  align-self: center !important;
}
.contact-sec-form .col-xl-12 {
    position: static;
    z-index: 9;
}
.contact-sec-form .col-xl-12:first-child{
    margin-top: 0;
}
.contact-sec-form .form-control{ 
    border: none;
    border-bottom: 1px solid rgba(250,250,250,.5);
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-weight: 100;
    font-size: 16px;
}
.contact-sec-form .form-control:focus{
    box-shadow: none;
    border-bottom: 1px solid rgba(250,250,250,.9);
}
.contact-sec-form .form-control::placeholder{
    color: rgba(250,250,250,.5);
    opacity: 1;
}
.contact-sec-form .form-control::-webkit-input-placeholder{
    color: rgba(250,250,250,.5);
}
.contact-sec-form .form-control:-ms-input-placeholder{
    color: rgba(250,250,250,.5);
}
.contact-sec-form .form-control::-ms-input-placeholder{
    color: rgba(250,250,250,.5);
}
.contact-section-left .expertise-heading h4 {
  margin-bottom: 1rem;
}
.contact-btn-outer .works-explore-btn{
    display: inline-block;
    margin: 0;
}
/* Contact Us Ends */

.full-worksgalle {
  margin-bottom: 120px;
}
.about-section,
.our-works-section-out{
    position: relative;
}
.our-works-section-out .top-gredient-center{
    top: 100px;
}
footer .about-section-box.footer-section-box{
    position: static;
    z-index: 9;
}

/*.our-members-name:before{*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: -20%;*/
/*  z-index: 0;*/
/*  background:*/
/*  conic-gradient(*/
/*      from 0deg at 50% 50%,*/
/*      rgba(25,120,220,0.0),*/
/*      rgba(25,120,220,0.55),*/
/*      rgba(0,200,255,0.35),*/
/*      rgba(25,120,220,0.0),*/
/*      rgba(25,120,220,0.45),*/
/*      rgba(0,140,255,0.2),*/
/*      rgba(25,120,220,0.0)*/
/*  );*/
/*  filter: blur(70px);*/
/*  opacity: 0.9;*/
/*  animation:*/
/*  auroraRotate 18s linear infinite,*/
/*  auroraScale 10s ease-in-out infinite alternate;*/

/*}*/
/*.our-members-name:after{*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 500px;*/
/*    height: 500px;*/
/*    border-radius: 50%;*/
/*    z-index: 0;*/

/*    background:*/
/*    radial-gradient(*/
/*        circle,*/
/*        rgba(0,180,255,0.45) 0%,*/
/*        rgba(25,120,220,0.2) 40%,*/
/*        transparent 70%*/
/*    );*/

/*    filter: blur(50px);*/
/*    animation:*/
/*    energyMove 14s ease-in-out infinite alternate;*/
/*}*/
.footer-social-btn .behance-btn {
  margin-top: 0;
}
.navbar-nav .only-mob{
    display: none;
}



.mob-contact-btn {
	position: fixed;
	right: -40px;
	bottom: 100px;

	transform: rotate(-90deg) translateY(100px);
	transform-origin: center;

	text-decoration: none;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;

	padding: 10px 20px;
    border-radius: 13px 13px 0 0;

	background: linear-gradient(-45deg,
			#0000fe,
			#0066ff,
			#008dff,
			#00a6ff,
			#00bbe7);

	background-size: 300% 300%;

	box-shadow:
		0 10px 30px rgba(0, 102, 255, 0.35),
		0 0 20px rgba(0, 166, 255, 0.25);

	opacity: 0;
	visibility: hidden;

	transition:
		opacity 0.5s ease,
		transform 0.5s ease;

	z-index: 999;

	overflow: hidden;
	display: none;
}

/* SHOW BUTTON AFTER SCROLL */
.mob-contact-btn.show {
	opacity: 1;
	visibility: visible;

	transform: rotate(-90deg) translateY(0);
}

/* GRADIENT MOVING EFFECT */
.mob-contact-btn::before {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0.1),
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0.1));

	transform: translateX(-180%);
	animation: shineMove 3s infinite;
}

/* PULSE RING EFFECT */
.mob-contact-btn::after {
	content: "";
	position: absolute;
	inset: -6px;

	border: 2px solid rgba(0, 166, 255, 0.4);
	border-radius: 22px 22px 0 0;

	animation: pulseRing 2s infinite;
}


/* ANIMATIONS */

@keyframes shineMove {
	0% {
		transform: translateX(-180%);
	}

	100% {
		transform: translateX(180%);
	}
}

@keyframes pulseRing {
	0% {
		opacity: 0.8;
		transform: scale(1);
	}

	70% {
		opacity: 0;
		transform: scale(1.18);
	}

	100% {
		opacity: 0;
		transform: scale(1.18);
	}
}

/* MOVING GRADIENT */
.mob-contact-btn {
	animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}




.btn-works,
.btn-email,
.btn-email-icon{
    transition:
        background-color .8s ease,
        color .8s ease,
        border-color .8s ease,
        box-shadow .8s ease,
        transform .8s ease,
        opacity .8s ease;
}

.btn-works.style-alt{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.85);
    box-shadow: 0 0 25px rgba(255,255,255,.15);
    transform: scale(1.03);
}

.btn-email.style-alt{
    background: #ffffff;
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255,255,255,.2);
    transform: scale(1.03);
}

.btn-email.style-alt .btn-email-icon{
    background: #25D366;
}













