/* ==========================
   ROOT VARIABLES
========================== */
:root {
    --primary: #0D47A1;
    --secondary: #1E88E5;
    --accent: #FFC107;
    --dark: #071a4c;
    --text: #eeeeee;
    --heading: #222222;
    --light: #f8f9fa;
    --white: #ffffff;
    --border: #e5e7eb;
    --body-font: "Inter", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --transition: all .35s ease;
    --radius: 12px;
    --shadow: 0 15px 40px rgba(0,0,0,.08);
    --container: 1320px;
}
/* ==========================
   RESET
========================== */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/* ==========================
   HTML
========================== */
html{
    scroll-behavior:smooth;
    font-size:16px;
    -webkit-text-size-adjust:100%;
}
/* ==========================
   BODY
========================== */
body{
    font-family:var(--body-font);
    font-size:16px;
    font-weight:400;
    line-height:1.7;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
/* ==========================
   IMAGES
========================== */
img{
    max-width:100%;
    height:auto;
    display:block;
}
/* ==========================
   LINKS
========================== */
a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}
a:hover{
    color:var(--primary);
}
/* ==========================
   LISTS
========================== */
ul,
ol{
    list-style:none;
    margin:0;
    padding:0;
}
/* ==========================
   PARAGRAPH
========================== */
p{
    margin:0 0 15px;
    color:var(--text);
    font-size:16px;
    line-height:1.7;
}
/* ==========================
   HEADINGS
========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
h1{
    font-size:clamp(3rem,6vw,5rem);
}
h2{
    font-size:clamp(2.2rem,4vw,3.5rem);
}
h3{
    font-size:2rem;
}
h4{
    font-size:1.5rem;
}
h5{
    font-size:1.25rem;
}
h6{
    font-size:1rem;
}
/* ==========================
   FORM ELEMENTS
========================== */
input,
textarea,
select,
button{
    font:inherit;
    outline:none;
    border:none;
}
input,
textarea,
select{
    width:100%;
}
textarea{
    resize:vertical;
}
button{
    cursor:pointer;
    background:none;
}
/* ==========================
   TABLE
========================== */
table{
    width:100%;
    border-collapse:collapse;
}
/* ==========================
   IFRAME
========================== */
iframe{
    border:0;
    width:100%;
}
/* ==========================
   SECTION
========================== */
section{
    position:relative;
    padding:100px 0;
}
/* ==========================
   SELECTION
========================== */
::selection{
    background:var(--primary);
    color:#fff;
}
/* ==========================
   PLACEHOLDER
========================== */
::placeholder{
    color:#999;
    opacity:1;
}
/* ==========================
   SCROLLBAR
========================== */
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-track{
    background:#f3f3f3;
}
::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:50px;
}
::-webkit-scrollbar-thumb:hover{
    background:--secondary;
}
/* ==========================
   FOCUS
========================== */
:focus-visible{
    outline:2px solid var(--primary);
    outline-offset:2px;
}
/*=========================================
    BUTTONS
=========================================*/
.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:0;
    padding:6px 6px 6px 26px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    line-height:1;
    text-decoration:none;
    overflow:hidden;
    position:relative;
    transition:.35s ease;
    white-space:nowrap;
}
/* Circle */
.theme-btn i {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: .35s ease;
}
/*=========================
    PRIMARY
=========================*/
.btn-primary {
    color: var(--dark);
    background: linear-gradient(90deg, #FFD54F 0%, #FFC107 100%);
    box-shadow: 5px 5px 0px rgba(255, 213, 79, .25);
}
.btn-primary i{
    color:var(--dark);
}
.btn-primary:hover{
    transform:translate(5px, 5px);
    color:#fff;
    box-shadow: 0px 0px 0px rgba(255, 213, 79, .25);
}
.btn-primary:hover i{
    transform:translateX(5px) rotate(-45deg);
    color:#fff;
}
/*=========================
    OUTLINE
=========================*/
.btn-outline {
    border: 1px solid rgb(255 255 255 / 41%);
    color: #fff;
    background: linear-gradient(            135deg,            #138dff 0%,            #0769e7 48%,            #0649c2 100%        );
    box-shadow: 0 0 8px rgba(0, 145, 255, 0.9), 0 0 20px rgba(0, 110, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-outline i{
    color:#fff;
    background:transparent;
}
.btn-outline:hover{
    background:#fff;
    color:#222;
    border-color:#fff;
    transform:translateY(-4px);
}
.btn-outline:hover i{
    color:var(--dark);
    transform:translateX(5px) rotate(-45deg);
}
.main-content {
    position: relative;
    overflow-x: hidden;
    margin-top: -120px;
}
.loaderWrapper {
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: round 1s infinite linear;
}
@keyframes round {to{transform: rotate(1turn)}}
.primary{
    color:var(--primary);
}
.secondary{
    color:var(--secondary);
}
.accent{
    color:var(--accent);
}
.white{
    color:#fefefe;
}
.dark{
    color:var(--dark);
}
/*==================================================
    Header SECTION
==================================================*/
.header {
    position: relative;
    width: calc(100% - 10px);
    margin-top: 5px;
    padding: 0 12px;
    background: linear-gradient(
            135deg,
            rgba(8, 48, 112, 0.90),
            rgba(3, 32, 78, 0.86)
        );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(91, 174, 255, 0.42);
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(0, 105, 255, 0.12),
        0 6px 20px rgba(0, 15, 45, 0.50),
        0 0 28px rgba(0, 102, 255, 0.20),
        inset 0 1px 1px rgba(255, 255, 255, 0.12),
        inset 0 -2px 5px rgba(0, 30, 90, 0.25);
    overflow: hidden;
    max-width: 1290px;
    left: 50%;
    transform: translateX(-50%);
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            110deg,
            rgba(90, 180, 255, 0.16),
            transparent 25%,
            transparent 75%,
            rgba(0, 130, 255, 0.12)
        );
    pointer-events: none;
}
.header > * {
    position: relative;
    z-index: 1;
}
.header {
    z-index: 999;
    transition: all .35s ease;
}
.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    background: linear-gradient(135deg, rgb(8 48 112), rgb(3 32 78));
    max-width: 100%;
}
.social-top ul li a {
    border: 1px solid #ededed;
    color: #fff;
    padding: 4px;
    font-size: 12px;
    border-radius: 50%;
}
.social-top ul li a:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
.logo {
    max-width: 275px;
    display: flex;
    align-items: center;
}
.nav-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}
.nav-wrapper ul.navbar-nav {
    margin-left: 100px;
}
.nav-wrapper ul.navbar-nav li+li{
    margin-left: 20px;
}
.nav-wrapper ul.navbar-nav li.nav-item a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}
.nav-wrapper ul.navbar-nav li.nav-item a::before{
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: .35s ease;
}
.nav-wrapper ul.navbar-nav li.nav-item a:hover::before, .nav-wrapper ul.navbar-nav li.nav-item.current a::before{
    width: 100%;
}
.nav-wrapper ul.navbar-nav li.nav-item.current a{
    color: var(--accent);
}
/*==================================================
    HERO SECTION
==================================================*/
.hero {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 0;
}
.heroSwiper{
    width:100%;
    height:100vh;
    min-height:800px;
}
.heroSwiper .swiper-slide{
    position:relative;
    overflow:hidden;
}
/*==================================================
    BACKGROUND IMAGE
==================================================*/
.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}
.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.08);
    transition:8s ease;
}
.swiper-slide-active .hero-bg img{
    transform:scale(1);
}
/*==================================================
    OVERLAY
==================================================*/
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgb(3 25 55 / 88%) 0%,
        rgb(5 45 85 / 52%) 35%,
        rgb(5 45 85 / 0%) 100%
    );
}
.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgb(3 25 55 / 58%),
        transparent 40%
    );
}
/*==================================================
    CONTENT
==================================================*/
.hero .container{
    position:relative;
    z-index:10;
}
.hero-content {
    color: #fff;
    position: relative;
    z-index: 20;
    padding-top: 150px;
}
.hero-content-details {
    max-width: 670px;
    margin-left: 40px;
}
/*==================================================
    SUBTITLE
==================================================*/
.hero-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: clamp(14px, 2vw, 20px);
    font-family: "Caveat";
    margin-bottom: 10px;
    letter-spacing: .5px;
}
/*==================================================
    TITLE
==================================================*/
.hero-content h2 {
    color: #fff;
    font-size: clamp(25px, 3vw, 44px);
    line-height: 1.02;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 640px;
}
.hero-content h2 span.tm-white{
    color:#fff;
}
.hero-content h2 span.tm-green{
    color:var(--accent);
}
/*==================================================
    DESCRIPTION
==================================================*/
.hero-content p {
    color: rgba(255,255,255,.85);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    max-width: 670px;
    margin-bottom: 25px;
}
/*==================================================
    BUTTON WRAPPER
==================================================*/
.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 70px;
}
/*==================================================
    RIGHT COLUMN
==================================================*/
.hero .row{
    position:relative;
}
.hero .col-lg-5{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}
/*==================================================
    SLIDE CONTENT ANIMATION
==================================================*/
.hero-subtitle,
.hero-content h2,
.hero-content p,
.hero-buttons,
.hero-badge{
    opacity:0;
    transform:translateY(70px);
    transition:
    opacity .9s ease,
    transform .9s ease;
}
/* animation delay */
.hero-content h2{
    transition-delay:.15s;
}
.hero-content p{
    transition-delay:.35s;
}
.hero-buttons{
    transition-delay:.55s;
     margin-left: 40px;
}
/* active */
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-content h2,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-buttons{
    opacity:1;
    transform:translateY(0);
}
/*==================================================
    FEATURE BOXES
==================================================*/
.hero-features {
    display: flex;
    gap: 18px;
    flex-direction: row;
    align-items: center;
    max-width: 1280px;
    justify-content: center;
    margin: auto;
    margin-top: -50px;
    z-index: 1;
    position: relative;
}
.feature-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 15px;
    border-radius: 18px;
    background: var(--primary);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(42 127 215 / 21%);
    transition: .35s;
}
.hero-features .feature-box .text {
    max-width: 145px;
}
.feature-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.14);
    border-color:rgba(255,255,255,.25);
}
.feature-box .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0D47A1,#1E88E5);
    color: var(--accent);
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(13,71,161,.45);
}
.feature-box h6 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
.feature-box p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:14px;
    line-height:1.6;
}
/*==================================================
    HERO NAVIGATION
==================================================*/
.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    z-index:30;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    cursor:pointer;
    transition:.35s ease;
}
.hero-prev{
    left:40px;
}
.hero-next{
    right:40px;
}
.hero-prev i,
.hero-next i{
    font-size:22px;
    transition:.35s ease;
}
.hero-prev:hover,
.hero-next:hover{
    background:var(--accent);
    border-color:var(--accent);
    transform:translateY(-50%) scale(1.08);
}
.hero-prev:hover i{
    transform:translateX(-5px);
}
.hero-next:hover i{
    transform:translateX(5px);
}
/*==================================================
    PAGINATION
==================================================*/
.hero .swiper-pagination{
    bottom:40px !important;
    left:60px !important;
    width:auto !important;
}
.hero .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.35;
    transition:.35s;
    margin:0 8px !important;
}
.hero .swiper-pagination-bullet-active{
    width:36px;
    border-radius:20px;
    background:var(--accent);
    opacity:1;
}
/*==================================================
    FEATURE CARD HOVER
==================================================*/
.feature-box{
    overflow:hidden;
    position:relative;
}
.feature-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    transform:translateX(-120%);
    transition:.8s;
}
.feature-box:hover::before{
    transform:translateX(120%);
}
/*==================================================
    IMAGE PARALLAX
==================================================*/
.hero-bg img{
    will-change:transform;
}
/*==================================================
    CONTENT TEXT SHADOW
==================================================*/
.hero-content h2{
    text-shadow:
    0 10px 25px rgba(0,0,0,.45);
}
.hero-content p{
    text-shadow:
    0 2px 10px rgba(0,0,0,.35);
}
/*==================================================
    GLASS EFFECT
==================================================*/
.hero-features .feature-box {
    box-shadow: 0 0px 8px rgb(255 255 255 / 26%);
}
/*==================================================
    RESPONSIVE
==================================================*/
@media (max-width:1450px) {
    .hero-prev {
    left: 22px;
}
    .hero-next {
    right: 22px;
}
.hero-prev, .hero-next {
    width: 60px;
    height: 60px;
}
}
@media(max-width:1200px){
.hero-prev{
    left:20px;
}
.hero-next{
    right:20px;
}
}
@media(max-width:991px){
.hero-prev,
.hero-next{
    width:58px;
    height:58px;
}
.hero .swiper-pagination{
    left:50% !important;
    transform:translateX(-50%);
}
.hero-prev{
    left:10px;
}
.hero-next{
    right:10px;
}
}
@media(max-width:767px){
.hero-prev,
.hero-next{
    display:none;
}
.hero .swiper-pagination{
    bottom:25px !important;
}
}
section.about-section {
    padding-bottom: 150px;
}
.about-image-wrapper {
    position: relative;
    padding-right: 50px;
    height: 100%;
}
.about-image {
    position: relative;
    height: 100%;
    width: 100%;
}
.about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translate(10px, 10px);
    transition: .8s;
    z-index: 0;
    border-radius: 48px 100px 8px 8px;
}
.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius: 48px 100px 8px 8px;
    position: relative;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.about-small-image {
    position: absolute;
    right: 26px;
    bottom: -45px;
    width: 196px;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: rotate(10deg);
    transform-origin: center;
    border-radius: 15px;
}
.about-small-image img{
    border-radius: 15px;
}
.section-title {
    margin-bottom: 25px;
    position: relative;
}
.section-title .subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: clamp(14px, 2vw, 20px);
    font-family: "Caveat";
    margin-bottom: 0px;
    letter-spacing: .5px;
}
.section-title h2{
    font-size:clamp(25px, 3.5vw, 42px);
    font-weight:700;
    margin-bottom:10px;
    letter-spacing: 1px;
}
.about-content {
    margin-bottom: 35px;
}
.about-content ul li {
    display: flex;
    align-items: baseline;
    grid-gap: 15px;
}
.about-content ul li i {
    color: var(--primary);
    background-color: var(--accent);
    font-size: 18px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    top: 5px;
}
.about-content ul li p{
    margin-bottom: 12px;
}
/*==========================
SERVICE
==========================*/
.canvas-wrapper{
     position: relative;
    background:
        radial-gradient(
            ellipse at 0% 0%,
            rgba(0, 102, 255, 0.75) 0%,
            transparent 45%
        ),
        radial-gradient(
            ellipse at 100% 100%,
            rgba(0, 90, 255, 0.65) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            #06275f,
            #031a46 50%,
            #020d28
        );
}
.canvas-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 30%,
        rgba(0, 0, 0, 0.18) 100%
    );
    pointer-events: none;
}
.canvas-wrapper section {
    z-index: 1;
}
/* ==========================================
   SERVICES SECTION
========================================== */
.services-section {
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(
            ellipse 55% 38% at 50% -5%,
            rgba(238, 244, 255, 0.96) 0%,
            rgba(191, 215, 249, 0.78) 28%,
            rgba(121, 164, 224, 0.42) 55%,
            transparent 78%
        ),
        radial-gradient(
            ellipse 55% 70% at -5% 45%,
            rgba(73, 128, 211, 0.88) 0%,
            rgba(65, 119, 207, 0.58) 35%,
            rgba(29, 79, 165, 0.35) 58%,
            transparent 80%
        ),
        radial-gradient(
            ellipse 50% 70% at 105% 45%,
            rgba(94, 143, 211, 0.76) 0%,
            rgba(64, 112, 188, 0.52) 36%,
            rgba(26, 68, 139, 0.40) 60%,
            transparent 82%
        ),
        radial-gradient(
            ellipse 70% 65% at 50% 45%,
            rgba(102, 151, 216, 0.45),
            rgba(41, 88, 163, 0.58) 55%,
            rgba(10, 43, 101, 0.75) 100%
        ),
        linear-gradient(
            180deg,
            #b4d0f5 0%,
            #739bd5 18%,
            #3d70ba 45%,
            #174889 73%,
            #082b63 100%
        );
    background-image: url("../images/background/bg-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* ==========================================
   ATMOSPHERIC BLUR
========================================== */
.services-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 300px;
    left: 50%;
    top: -170px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    filter: blur(90px);
    opacity: .7;
    pointer-events: none;
}
.services-section::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 300px;
    left: 50%;
    bottom: -210px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(9, 49, 112, 0.75);
    filter: blur(90px);
    pointer-events: none;
}
/* ==========================================
   HEADING
========================================== */
.services-section .section-title {
    margin: auto;
    margin-bottom: 38px;
    text-align: center;
    max-width: 700px;
}
/* ==========================================
   GRID
========================================== */
.services-grid {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    justify-content: center;
}
/* ==========================================
   GLASS SERVICE CARD
   THIS IS THE IMPORTANT PART
========================================== */
.service-card {
    position: relative;
    display: flex;
    flex: 1 1 260px;
    max-width: 320px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 15px;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(
            145deg,
            rgba(207, 229, 255, 0.34) 0%,
            rgba(166, 202, 246, 0.24) 45%,
            rgba(117, 163, 220, 0.20) 100%
        );
    border: 1px solid rgba(224, 241, 255, 0.58);
    box-shadow: 0 8px 18px rgba(16, 61, 130, 0.22),
        0 0 7px rgba(218, 239, 255, 0.42),
        0 -1px 8px rgba(230, 245, 255, 0.32),
        inset 0 1px 1px rgba(255, 255, 255, 0.78),
        inset 0 -8px 18px rgba(66, 119, 194, 0.10);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    transition: none;
}
/* ==========================================
   TOP WHITE GLOW LINE
========================================== */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(245, 250, 255, 0.88);
    box-shadow:
        0 0 4px rgba(255,255,255,.95),
        0 0 10px rgba(207,234,255,.65),
        0 0 18px rgba(170,216,255,.35);
    opacity: .9;
}
/* ==========================================
   SOFT BOTTOM LIGHT
========================================== */
.service-card::after {
    content: "";
    position: absolute;
    width: 85%;
    height: 30px;
    left: 7.5%;
    bottom: -23px;
    border-radius: 50%;
    background: rgba(190, 220, 255, 0.22);
    filter: blur(16px);
}
/* ==========================================
   ICON
========================================== */
.service-icon {
    position: relative;
    z-index: 2;
    width: 55px;
    height: 55px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0755bd;
    filter: drop-shadow(0 0 1px rgba(255,255,255,.8))
        drop-shadow(0 2px 2px rgba(2,58,137,.16));
}
.service-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 0px 15px #fff);
}
/* ==========================================
   CARD TEXT
========================================== */
.service-card h3 {
    position: relative;
    z-index: 3;
    margin: 0;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}
.service-card p {
    position: relative;
    z-index: 3;
    margin: 5px 0 0;
    color: var(--dark);
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
}
.service-btn {
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
/* ==========================================
   BOTTOM TWO CARDS
========================================== */
.service-card:nth-child(11) {
    grid-column: 2 / span 1;
}
.service-card:nth-child(12) {
    grid-column: 3 / span 1;
}
/* =========================================
   WHY CHOOSE US
========================================= */
.why-choose-section {
    position: relative;
    background: radial-gradient( ellipse at 0% 0%, rgba(0, 102, 255, 0.75) 0%, transparent 45% ), radial-gradient( ellipse at 100% 100%, rgba(0, 90, 255, 0.65) 0%, transparent 50% ), linear-gradient( 135deg, #06275f, #031a46 50%, #020d28 );
    padding-bottom: 200px;
}
/* =========================================
   LEFT CONTENT
========================================= */
.why-content {
    position: relative;
    z-index: 2;
}
/* =========================================
   LIST
========================================= */
.why-list {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    grid-gap: 15px;
}
/* =========================================
   CHECK ICON
========================================= */
.check-icon {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #087dff;
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(0, 104, 255, 0.24),
            rgba(0, 54, 130, 0.15)
        );
    box-shadow: 0 0 10px 2px rgba(0, 120, 255, 0.75), 0 0 17px 3px rgba(0, 90, 255, 0.35), inset 0 0 12px rgba(0, 120, 255, 0.25);
}
.check-icon i {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    margin-top: -8px;
    margin-right: -13px;
    text-shadow: 0 0 5px rgba(255,255,255,0.4);
}
/* =========================================
   TEXT
========================================= */
.why-text {
    padding-top: 1px;
}
.why-text h4 {
    margin: 0 0 5px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 1px;
    font-weight: 700;
}
.why-text p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
}
.why-btn{
    margin-top: 38px;
}
/* =========================================
   RIGHT IMAGE
========================================= */
.why-image-wrapper {
    position: relative;
    width: 100%;
    transform: matrix(1, 0, -0.09, 1, 0, 0);
}
.why-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(0, 139, 255, 0.8),
            rgba(0, 100, 255, 0.25),
            rgba(0, 139, 255, 0.75)
        );
    filter: blur(16px);
    opacity: 0.55;
    z-index: 0;
}
.why-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 23px;
    border: 2px solid rgba(0, 142, 255, 0.85);
    transform: perspective(1000px) rotateY(-3deg);
    background: #061b3d;
    box-shadow: 0 0 8px rgba(0, 145, 255, 0.95),
        0 0 20px rgba(0, 110, 255, 0.65),
        0 0 45px rgba(0, 95, 255, 0.25);
}
.why-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 21px;
}
/* cta section  */
section.cta {
    position: relative;
    background-image: url("../images/background/bg-1.jpg");
    background-position: center;
    background-attachment: fixed;
    max-width: 1320px;
    margin: auto;
    padding: 40px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 145, 255, 0.9), 0 0 20px rgba(0, 110, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    margin-top: -100px;
}
section.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient( ellipse at 0% 0%, rgba(0, 102, 255, 0.75) 0%, transparent 45% ), radial-gradient( ellipse at 100% 100%, rgba(0, 90, 255, 0.65) 0%, transparent 50% ), linear-gradient( 135deg, #06275f, #031a46 50%, #020d28 );
    opacity: .8;
}
section.cta .section-title {
    max-width: 700px;
}
.cta h2{
    color:#fff;
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}
.cta p{
    color:#fff;
}
.gallery-wrapper {
    position: relative;
}
.gallerySwiper {
    overflow: hidden;
    padding-bottom: 40px;
}
.gallery-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 0 8px rgba(0, 145, 255, 0.9), 0 0 20px rgba(0, 110, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    border: 1px solid #edf1ed;
    margin: 10px;
}
.gallery-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: var(--accent);
    transition: .5s;
}
.gallery-card:hover::before{
    height:100%;
}
.gallery-image {
    overflow: hidden;
    position: relative;
    height: 280px;
    pointer-events: none;
}
.gallery-image a {
    pointer-events: auto;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}
.gallery-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    transparent,
    rgba(0,0,0,.25));
}
.gallery-card:hover .gallery-image img{
    transform:scale(1.12);
}
.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}
.gallery-prev, .gallery-next {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0D47A1;
    background: #fff;
    border: 1px solid #e8ece9;
    transition: .35s;
    box-shadow: 0 10px 15px rgba(0,0,0,.08);
    position: absolute;
    top: 39%;
    transform: translateY(-50%);
    z-index: 1;
}
.gallery-prev {
    left: 10px;
}
.gallery-next {
    right: 10px;
}
.gallery-prev i, .gallery-next i {
    transition: .35s;
    font-size: 14px;
}
.gallery-prev:hover,
.gallery-next:hover{
    background:#0D47A1;
    color:#fff;
    transform:translateY(-60%);
}
.gallery-prev:hover i{
    transform:translateX(-5px);
}
.gallery-next:hover i{
    transform:translateX(5px);
}
.gallery-pagination {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 0 !important;
}
.gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 7px !important;
    background: #cfd8d2;
    opacity: 1;
    border-radius: 30px;
    transition: .35s;
}
.gallery-pagination .swiper-pagination-bullet-active {
    width: 38px;
    background: var(--accent);
}
@media(max-width:991px){
.gallery-prev,
.gallery-next{
    width:55px;
    height:55px;
    min-width:55px;
}
}
@media(max-width:767px){
.gallery-prev,
.gallery-next{
    display:none;
}
}
/* Footer CSS */
footer {
    position: relative;
    z-index: 4;
    background-position: center;
    background: radial-gradient( ellipse at 0% 0%, rgba(0, 102, 255, 0.75) 0%, transparent 45% ), radial-gradient( ellipse at 100% 100%, rgba(0, 90, 255, 0.65) 0%, transparent 50% ), linear-gradient( 135deg, #06275f, #031a46 50%, #020d28 );
    border-top: 1px solid rgba(224, 241, 255, 0.58);
}
footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, black, transparent);
    z-index: 0;
}
.footer-logo {
    max-width: 260px;
}
.footer-top {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.footer-top .social-top ul {
    display: flex;
    grid-gap: 12px;
    margin-top:20px
}
.footer-top .social-top ul li a {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
}
.footer-top .social-top ul li a i{
    margin-right: 0;
    color: var(--accent);
}
.footer-top .social-top ul li a:hover i{
    color: #fff;
}
.footer-widget h4 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    position: relative;
}
.footer-widget h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background: var(--accent);
}
.footer-links {
    padding-left: 40px;
}
.footer-widget ul li {
    display: flex;
    align-items: baseline;
}
.footer-widget ul li:not(:last-child) {
    margin-bottom: 8px;
}
.footer-widget ul li a {
    color: #fff;
    transition: .35s;
}
.footer-widget ul li a:hover {
    color: #0D47A1;
}
.footer-widget ul li i {
    margin-right: 10px;
    color: var(--accent);
}
.footer-widget p {
    color: #fff;
}
.footer-bottom{
    position:relative;
}
.footer-bottom .CopywriteA{
    border-top: 1px solid #e8ece99f;
}
.footer-bottom p {
    margin-bottom: 0;
    color: #fff;
}
span#date-footer {
    margin: 0 5px;
}
/* Footer Bottom */
@media (min-width:776px) {
  .cp_ys{
    display: none;
  }
  p.cp_y {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
}
@media (max-width : 479px) {
  .cp_y{
    margin-bottom: 0px;
  }
  .cp_y img{
    display: none;
  }
  .cp_ys{
    text-align: center;
  }
}
@media (min-width : 480px) and (max-width:767px) {
  .cp_y{
    margin-bottom: 0px;
  }
  .cp_y img{
    display: none;
}
.cp_ys{
  text-align: center;
}
}
@media only screen and (min-width : 768px) {
  .cp_ys{
    display: none;
  }
  
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #0D47A1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}
.back-to-top::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #0D47A16b;
    animation: pulse 2s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.7);
        opacity: 0;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}
footer .footer-links.reveal, .cta .btn-primary.reveal{
transition-delay: .2s;
}
footer .footer-services.reveal{
transition-delay: .5s;
}
footer .footer-contact.reveal{
transition-delay: .7s;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}
.delay-1{
  transition-delay: .2s;
}
.delay-2{
  transition-delay: .4s;
}
.delay-3{
  transition-delay: .6s;
}
.delay-4{
  transition-delay: .8s;
}


@media (max-width:1450px) {
    section.cta {
    max-width: 95%;
}
}
@media (max-width:1199px) {
.nav-wrapper ul.navbar-nav li+li {
    margin-left: 6px;
}
.nav-wrapper ul.navbar-nav li.nav-item a {
    font-size: 14px;
    font-weight: 400;
}
.nav-wrapper ul.navbar-nav {
    margin-left: 25px;
}
.logo {
    max-width: 210px;
}
.header {
    overflow: visible;
}
.heroSwiper {
    height: 750px;
    min-height: unset;
}
.hero .row {
    min-height: 620px !important;
}
.hero-features {
    margin-top: -35px;
}
.about-image-wrapper {
    padding-right: 25px;
}
.about-small-image {
    right: 43px;
    bottom: -60px;
    width: 164px;
}
.service-content {
    min-height: 274px;
}
.feature-box .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size:15px;
}
.feature-box h6 {
    font-size: 16px;
}
.feature-box p {
    font-size: 12px;
}
.feature-box {
    padding: 12px 12px;
}
}
@media (max-width:991px) {
    .theme-btn {
    gap: 12px;
    padding: 5px 6px 5px 20px;
    font-size: 14px;
    font-weight: 500;
}
.nav-wrapper .navbar-toggler{
color:#fff;
border-color:#fff;
background-color: #fff;
}
.nav-wrapper .navbar-toggler .navbar-toggler-icon{
color:#fff
}
.nav-wrapper {
    justify-content: space-between;
}
.hero-features {
    grid-template-columns: repeat(2,1fr);
}
#navbarSupportedContent {
    position: fixed;
    height: 100vh;
    padding: 30px;
    width: 0;
    opacity: 0;
    top: 0;
    left: 0;
    background-color: #000;
    transition:all .5s ease;
}
.nav-wrapper ul.navbar-nav li+li{
    margin-left: 0;
}
#navbarSupportedContent.show{
 width: 250px;
    opacity: 1;
}
.nav-wrapper ul.navbar-nav {
    margin-left: 0;
    margin-bottom: 30px !important;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none;
    position: relative;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #000; 
    transform-origin: center;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.nav-wrapper .navbar-toggler {
    font-size: 14px;
}
.about-small-image {
    right: 10px;
    bottom: -25px;
}
section.cta .section-title {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px !important;
}
.hero-content {
    padding-right: 40px;
}
.about-image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
    height: auto;
}
section.about-section {
    padding-bottom: 70px;
}
.why-image-wrapper {
    margin-top: 40px;
}
.why-choose-section {
    padding-bottom: 170px;
}
.cta h2 {
    font-size: 32px;
}
section {
    padding: 70px 0;
}
.footer-logo {
    max-width: 295px;
    margin: auto;
}
.footer-about {
    margin-bottom: 40px;
}
.footer-links {
    padding-left: 0;
}
p.text-white.text-center.mb-0.cp_y {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-bottom a{
    display: inline-block;
}
}
@media (max-width:767px) {
    .header {
    padding: 0;
}
.hero-buttons {
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 40px;
    flex-direction: row;
}
.theme-btn {
    font-size: 13px;
}
.hero-content-details {
    margin-left: 0px;
}
.hero-buttons {
    margin-left: 0px;
}
.hero-features {
    display:none;
}
.hero-buttons {
    margin-bottom: 30px;
}
.heroSwiper {
    height: 650px;
}
.hero .row {
    min-height: 550px !important;
}
.about-image-wrapper {
    margin-right: 12px;
}
.about-small-image {
    width: 110px;
    bottom: -15px;
}
.section-title {
    margin-bottom: 20px;
}
section.cta {
    padding: 40px 15px;
}
.cta h2 {
    font-size: 26px;
}
.footer-about {
    margin-bottom: 0px;
}
.footer-widget {
margin-top: 40px;
}
.logo {
    max-width: 200px;
}
p.text-white.text-center.mb-0.cp_y {
    font-size: 15px;
}
}
/* .section-spacing {
    padding-bottom: 200px;
} */
.about-page-content ul li {
    display: flex;
    align-items: baseline;
    grid-gap: 10px;
}
.breadcrumb-sec {
    padding: 175px 0 0;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 20px;
    display: flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}
.breadcrumb-heading {
    margin-bottom: 0;
    color: #fff;
    font-size: 32px;
    letter-spacing: .5px;
}
.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.75;
    transition: 0.3s ease;
}
.breadcrumb a:hover {
    opacity: 1;
    color: #ffc20e;
}
.breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
}
.breadcrumb .active {
    color: #ffc20e;
    font-weight: 600;
}
.services-subtitle {
    color: var(--accent);
    font-size: 32px;
}
/* =========================================================
   HOUSEPROUD SERVICES PAGE
   Glass / Navy / Yellow Theme
========================================================= */
/* =========================================================
   SERVICE PAGE
========================================================= */
.service-page {
    width: 100%;
    box-sizing: border-box;
}

/* =========================================================
   CATEGORY
========================================================= */

.serv-title h3 {
    font-size: 25px;
    color: #fff;
}
/* =========================================================
   CATEGORY INTRODUCTION
========================================================= */
.service-page__category-intro {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

/* =========================================================
   REVERSE CATEGORY
========================================================= */
.service-page__category-intro--reverse {
    direction: rtl;
}
.service-page__category-intro--reverse
.service-page__category-content,
.service-page__category-intro--reverse
.service-page__category-image {
    direction: ltr;
}

/* =========================================================
   CATEGORY CONTENT
========================================================= */
.service-page__category-content {
    width: 100%;
    padding: 20px;
    padding-top: 0;
}
/* =========================================================
   EYEBROW
========================================================= */
.service-page__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #ffc20e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

/* =========================================================
   CATEGORY HEADING
========================================================= */
.service-page__category-content h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
}


/* =========================================================
   CATEGORY DESCRIPTION
========================================================= */
.service-page__category-content p {
    margin: 0 0 12px;
}

/* =========================================================
   QUICK INFORMATION
========================================================= */
.service-page__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 17px;
}

.service-page__highlight {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-page__highlight strong {
    display: block;
    margin-bottom: 3px;
    color: #ffc20e;
    font-size: 11px;
    font-weight: 700;
}

.service-page__highlight span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.4;
}
.service-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 25px;
}
/* =========================================================
   CATEGORY IMAGE
========================================================= */
.service-page__category-image {
    position: relative;
    aspect-ratio: 5.5/3;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(0, 150, 255, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
/* =========================================================
   GLASS REFLECTION
========================================================= */
.service-page__category-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.16),
            transparent 32%,
            transparent 70%,
            rgba(0, 150, 255, 0.10)
        );
}

/* =========================================================
   CATEGORY IMAGE
========================================================= */
.service-page__category-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-page__category-image:hover img {
    transform: scale(1.04);
}

/* =========================================================
   SERVICE DETAILS GLASS CONTAINER
========================================================= */
.service-page__details {
    flex: 1 1 350px;
    padding: 0;
    box-sizing: border-box;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 8px rgba(0, 145, 255, 0.9), 0 0 20px rgba(0, 110, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
/* =========================================================
   SECTION TITLE
========================================================= */
.service-page__section-title {
    margin-bottom: 10px;
}

.service-page__section-title span {
    color: #ffc20e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.service-page__section-title h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================================
   ⭐ TWO COLUMN SERVICE GRID
========================================================= */
.service-page__items {
    display: flex;
    column-gap: 30px;
    row-gap: 0;
    width: 100%;
    flex-wrap: wrap;
}
/* =========================================================
   INDIVIDUAL SERVICE
========================================================= */
.service-page__item {
    flex: 1 1 460px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    /* width: 100%; */
    /* height: 100%; */
    min-width: 0;
    padding: 25px 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.3s ease,
        transform 0.3s ease;
    align-content: start;
}
.service-page__item-head {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 15px;
    width: 100%;
}
.service-page__item-heading {
    margin-bottom: 15px;
}

.service-page__item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
}
/* =========================================================
   SERVICE NUMBER
========================================================= */
.service-page__item-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #ffc20e;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 194, 14, 0.07);
    border: 1px solid rgba(255, 194, 14, 0.28);
    box-shadow: 0 0 18px rgba(255, 194, 14, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    transition: all 0.3s ease;
}

.service-page__item:hover
.service-page__item-number {
    background: rgba(255, 194, 14, 0.14);
    border-color: rgba(255, 194, 14, 0.55);
    box-shadow:
        0 0 22px rgba(255, 194, 14, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    transform: scale(1.06);
}

/* =========================================================
   SERVICE CONTENT
========================================================= */
.service-page__item-content {
    min-width: 0;
    width: 100%;
}

/* =========================================================
   SERVICE LABEL
========================================================= */
.service-page__item-label {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.3;
}

/* =========================================================
   SERVICE HEADING
========================================================= */
.service-page__item-content h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 650;
}

/* =========================================================
   SERVICE DESCRIPTION
========================================================= */
.service-page__item-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   SERVICE POINTS
========================================================= */
.service-page__item-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 15px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}
.service-page__item-content li {
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}
i.fa.fa-circle-check {
    color: var(--accent);
}


/* =========================================================
   REMOVE INDIVIDUAL SERVICE IMAGES
========================================================= */
.service-page__item-image {
    display: none !important;
}

.blog-card {
    position: relative;
    overflow: hidden;
    display: block;
    flex: 1 1 260px;
    max-width: 360px;
}
.blog-card__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 5%;
    max-width: 298.66px;
}
.blog-card__thumb img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.blog-card__thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.blog-card__thumb:hover img {
    transform: scale(1.08);
}
.blog-card__thumb:hover::before {
    opacity: 1;
}
.blog-card__thumb .img-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    z-index: 2;
    transition: all 0.35s ease;
}
.blog-card__thumb:hover .img-popup {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.blog-card__thumb .img-popup i {
    font-size: 18px;
}
.image-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 99999;
}
.image-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}
.image-popup-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.image-popup-overlay.show .image-popup-img {
    transform: scale(1);
}
.image-popup-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
/* =========================================
   HOUSE PROUD GALLERY PAGE
   UNIQUE PREFIX: hp-gallery-
========================================= */
.hp-gallery-page {
    width: 100%;
}

/* =========================================
   SERVICE SECTION
========================================= */
.hp-gallery-section {
    position: relative;
    width: 100%;
    padding: 0 0 45px;
    margin-bottom: 45px;
}
.hp-gallery-section:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.hp-gallery-section:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
}
/* =========================================
   SECTION HEADER
========================================= */
.hp-gallery-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}
.hp-gallery-section-title {
    display: flex;
    align-items: center;
    gap: 18px;
}
.hp-gallery-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffc107;
    border-radius: 50%;
    color: #ffffff;
    font-size: 23px;
}
.hp-gallery-heading-content h2 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
}
.hp-gallery-heading-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   VIEW MORE
========================================= */
.hp-gallery-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffc107 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.hp-gallery-view-more i {
    transition: transform 0.3s ease;
}
.hp-gallery-view-more:hover {
    color: #ffffff !important;
}
.hp-gallery-view-more:hover i {
    transform: translateX(5px);
}

/* =========================================
   BEFORE / AFTER GRID
========================================= */
.hp-gallery-before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =========================================
   BEFORE / AFTER CARD
========================================= */
.hp-gallery-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    overflow: hidden;
}

/* =========================================
   IMAGE BOX
========================================= */
.hp-gallery-image-box {
    position: relative;
    min-width: 0;
    height: 190px;
    overflow: hidden;
    border-radius: 8px;
}
.hp-gallery-image-box > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hp-gallery-image-box:hover > img {
    transform: scale(1.06);
}

/* =========================================
   BEFORE / AFTER LABEL
========================================= */
.hp-gallery-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.hp-gallery-label-before {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
}
.hp-gallery-label-after {
    color: #111111;
    background: #ffc107;
}

/* =========================================
   POPUP CAMERA
========================================= */
.hp-gallery-popup {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111 !important;
    background: #ffffff;
    border-radius: 50%;
    text-decoration: none !important;
    opacity: 0;
    transition: all 0.3s ease;
}
.hp-gallery-image-box:hover .hp-gallery-popup,
.hp-gallery-project-image:hover .hp-gallery-popup {
    opacity: 1;
}
.hp-gallery-popup:hover {
    color: #111111 !important;
    background: #ffc107;
}

/* =========================================
   SINGLE PROJECT / DIGGER CARD
========================================= */
.hp-gallery-project {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
}
.hp-gallery-project-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.hp-gallery-project-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hp-gallery-project-image:hover > img {
    transform: scale(1.06);
}

/* =========================================
   PROJECT CAPTION
========================================= */
.hp-gallery-project-caption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px;
}
.hp-gallery-project-caption strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
}
.hp-gallery-project-caption span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.4;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 991px) {
    .hp-gallery-before-after-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-gallery-heading-content h2 {
        font-size: 24px;
    }
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {
    .hp-gallery-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
    .hp-gallery-section-title {
        align-items: flex-start;
    }
    .hp-gallery-before-after-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width: 575px) {
    .hp-gallery-section-title {
        gap: 12px;
    }
    .hp-gallery-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 19px;
    }
    .hp-gallery-heading-content h2 {
        font-size: 21px;
    }
    .hp-gallery-heading-content p {
        font-size: 13px;
    }
    .hp-gallery-image-box {
        height: 160px;
    }
    .hp-gallery-project-image {
        height: 200px;
    }
}
/* =========================================
   CONTACT PAGE
========================================= */
.contact-page-section {
    position: relative;
    overflow: hidden;
}

/* =========================================
   HEADER
========================================= */
.contact-page-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}
.contact-page-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffbd00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-page-header h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}
.contact-page-header h2 span {
    color: #ffbd00;
}
.contact-page-header p {
    margin: 0 auto;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================
   MAIN WRAPPER
========================================= */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* =========================================
   FORM BOX
========================================= */
.contact-form-box {
    padding: 45px 35px;
    background: #134181;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* FORM HEADER */
.contact-form-header {
    margin-bottom: 0;
}
.contact-form-header span {
    display: block;
    margin-bottom: 0;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.contact-form-header h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}
.contact-form-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   FORM ROW
========================================= */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}
.mt-0 {
    margin-top: 0 !important;
}
/* Remove arrows from number input */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

/* =========================================
   FORM GROUP
========================================= */
.contact-form-group {
    margin-bottom: 20px;
}
.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 300;
}

/* INPUTS */
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dce2ea;
    border-radius: 6px;
    background: #f8f9fb;
    color: #172b4d;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

/* PLACEHOLDER */
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #9ba5b5;
}

/* FOCUS */
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #ffbd00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 189, 0, 0.12);
}

/* SELECT */
.contact-form-group select {
    cursor: pointer;
    appearance: auto;
}

/* TEXTAREA */
.contact-form-group textarea {
    min-height: 145px;
    resize: none;
}

/* =========================================
   SUBMIT BUTTON
========================================= */
.contact-form-submit {
    margin-top: 5px;
}
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 170px;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    background: #ffbd00;
    color: #071a38;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.contact-submit-btn:hover {
    background: #fff;
    color: #071a38;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}
.contact-submit-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}
.contact-submit-btn:hover i {
    transform: translateX(4px);
}

/* =========================================
   CONTACT INFORMATION
========================================= */
.contact-info-box {
    position: relative;
    padding: 45px 35px;
    border-radius: 12px;
    background: #0b2b5b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    height: fit-content;
}


/* =========================================
   INFO HEADER
========================================= */
.contact-info-header {
    margin-bottom: 0;
}
.contact-info-header > span {
    display: block;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.contact-info-header h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
}
.contact-info-header h3 strong {
    display: inline;
    color: #ffbd00;
    font-weight: 700;
}
.contact-info-header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   INFO ITEMS
========================================= */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ICON */
.contact-info-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffbd00;
    color: #092047;
    font-size: 16px;
}

/* CONTENT */
.contact-info-content {
    min-width: 0;
}
.contact-info-content > span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.3px;
}
.contact-info-content a,
.contact-info-content h4 {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}
.contact-info-content a:hover {
    color: #0D47A1;
}
.contact-info-content p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.5;
}
.about-page-image {
    position: relative;
    width: 100%;
    max-width: 620px;
}
/* Main image */
.about-page-main-image {
    width: 85%;
    height: 600px;
    overflow: hidden;
    border-radius: 25px;
    border: 4px solid;
}
@media (min-width:1200px) and (max-width:1400px) {
    .about-page-main-image {
    height: 700px;
}
}
.about-page-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-page-small-image {
    position: absolute;
    right: 0px;
    bottom: 130px;
    width: 42%;
    height: 260px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    border: 2px solid;
}
.about-page-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}
.service-page__category:last-child {
    margin-bottom: 0;
}

.sub-title-white {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
}
.sub-title-accent {
    color: var(--accent);
    font-size: 32px;
    font-weight: 600;
}
.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
/* =========================================
   GALLERY LIGHTBOX
========================================= */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease,
                visibility 0.3s ease;
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Image */
.gallery-lightbox-image-wrap {
    position: relative;
    max-width: 75vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox-image {
    display: block;
    max-width: 75vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Close */
.gallery-lightbox-close {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.gallery-lightbox-prev {
    left: 35px;
}
.gallery-lightbox-next {
    right: 35px;
}
.gallery-page .blog-card__thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-page .blog-card__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-page .blog-card__thumb:hover::after {
    opacity: 1;
}
.gallery-page .blog-card__thumb::before {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 32px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery-page .blog-card__thumb:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Hide your existing camera link visually */
.gallery-page .img-popup {
    z-index: 4;
}

.contact-p {
    margin-bottom: 25px;
    color: #fff;
}
.mb-100{
    margin-bottom: 100px;
}
.service-page__item-content-p ul {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
}
.about-page-main-image {
    border: 2px solid;
}
.cta-other-pages {
    margin-top: 0 !important;
}
.canvas-wrapper-other-pages{
    padding-bottom: 100px;
}
@media( max-width:1199px){
    .about-page-small-image {
    display: none;
}
.about-page-main-image {
    width: 100%;
    height: 750px;
}
.contact-page-wrapper {
    grid-template-columns: 1.6fr 1fr;
}
.contact-form-header span {
    margin-bottom: 0;
}
.sub-title-white {
    font-size: 28px;
}
.about-page-image {
    padding-bottom: 0;
}
.service-page__item {
    flex: 1 1 370px;
    display: grid;
    grid-template-columns: 1fr;
}
.service-page__item-content-p ul {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
}
.service-page__item-number {
    font-size: 16px;
}
.service-page__item-heading {
    margin-bottom: 0;
}
.service-page__item-number {
    grid-column: 1;
}
.service-page__item-content {
    grid-column: 2;
}
.service-page__item-content-p {
    grid-column: 1 / -1;
}
.service-page__item:nth-last-child(-n+2) {
    border-bottom: none;
    padding: 25px 0 0;
}
.service-page__item:last-child {
    border-bottom: unset;
    padding: 25px 0 0;
}
.breadcrumb .active {
    font-size: 20px;
}
.breadcrumb a {
    font-size: 20px;
}
}
@media(max-width:991px){
.about-page-image {
    max-width: 100%;
    padding-bottom: 30px;
}
.about-page-main-image {
    width: 100%;
    height: auto;
}
.sub-title-accent {
    font-size: 28px;
}
    .service-page__category-intro {
    grid-template-columns: 1fr;
    gap: 25px;
}

    .service-page__category-image {
        height: 280px;
    }

    .service-page__category-content h2 {
        font-size: 28px;
    }

.service-page__category-content p {
    font-size: 16px;
}
.service-page__items {
    grid-template-columns: 1fr;
    column-gap: 20px;
}

.service-page__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.service-page__item-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
}
.service-page__item:nth-last-child(-n+2) {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.service-page__item:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}
.service-page__item-content h4 {
    font-size: 22px;
    font-weight: 600;
}
.service-page__item-label {
    font-size: 16px;
    font-weight: 400;
}
.service-page__item-content li {
    font-size: 16px;
}
    /* .section-spacing {
    padding-bottom: 150px;
} */
.service-page__item-content p {
    font-size: 16px;
    line-height: 1.6;
}
.contact-page-wrapper {
    grid-template-columns: 1fr;
}
.blog-card__thumb {
    max-width: 100%;
}
.contact-info-box {
    padding: 30px 25px;
}
.contact-form-box {
    padding: 30px 25px;
}
.sub-title-white {
    font-size: 26px;
}
.sub-title-accent {
    font-size: 26px;
}
.service-page__item-content-p ul {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.service-page__item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 25px 0;
}
.service-page__item:last-child {
    border-bottom: unset;
    padding: 25px 0 0;
}
.canvas-wrapper-other-pages {
    padding-bottom: 70px;
}
}
@media (max-width:767px){
     .sub-title-white {
    font-size: 22px;
}
.sub-title-accent {
    font-size: 22px;
}
    .breadcrumb {
    padding: 0 15px 20px;
}
.service-page__category-content p {
    font-size: 16px;
}
.service-page__details {
    padding: 20px 15px;
}
     .service-page__items {
        display: block;
    }
    .service-page__item {
        display: block;
        padding: 22px 0;
    }
.service-page__item-number {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    font-size: 18px;
}
    .service-page__item-content {
        display: block;
        width: 100%;
    }
    .service-page__item-label {
        display: block;
        margin-bottom: 5px;
    }
    .service-page__item-content h4 {
        margin: 0 0 12px !important;
    }
    .service-page__item-content p {
        margin: 0 0 12px;
    }
    .service-page__item-content ul {
        margin: 0;
        padding: 0;
    }
    .service-page__item-content ul li {
        margin-bottom: 5px;
    }
    .contact-form-row {
    grid-template-columns: 1fr;
}
.contact-form-box {
    padding: 25px 15px;
}
.contact-info-box {
    padding: 25px 15px;
}
section {
    padding: 50px 0;
}
.service-page__item-content-p ul {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
}
    .gallery-page-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .blog-card {
        width: 100%;
        max-width: none;
    }
    .gallery-lightbox-prev, .gallery-lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.gallery-lightbox-next {
    right: 5px;
}
.gallery-lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.gallery-lightbox-prev {
    left: 5px;
}
.service-page__item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 25px 0;
}
.service-page__item:last-child {
    border-bottom: unset;
    padding: 25px 0 0;
}
.service-page__item-head {
    display: flex;
    gap: 5px;
    width: 100%;
    flex-direction: column;
}
.canvas-wrapper-other-pages {
    padding-bottom: 50px;
}
}



.error-page-section {
    position: relative;
    padding: 120px 0;
    background: #f5f8fa;
    overflow: hidden;
}

.error-page-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.error-page-image {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 45px;
}

.error-page-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.error-page-content {
    max-width: 720px;
    margin: 0 auto;
}

.error-page-subtitle {
    display: block;
    margin-bottom: 12px;
    color: #0879bd;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.error-page-content h1 {
    margin-bottom: 18px;
    color: #193746;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}

.error-page-content p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #65747c;
    font-size: 16px;
    line-height: 1.7;
}



@media (max-width: 991px) {
    .error-page-section {
        padding: 90px 0;
    }

    .error-page-content h1 {
        font-size: 38px;
    }

    .error-page-image {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .error-page-section {
        padding: 70px 0;
    }

    .error-page-content h1 {
        font-size: 32px;
    }

    .error-page-content p {
        font-size: 16px;
    }

    .error-page-image {
        margin-bottom: 30px;
    }
}