/*------------------------------------------------------------
    Template name    : Technoit - IT Solutions & Business Services Multipurpose Responsive Website Template
    Author           : ZRTHEMES
    Version          : 2.0
    File Description : Main css file of the template
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html{
  scroll-behavior:smooth;
}

:root{

  /* =========================
     TYPOGRAPHY
  ========================= */

  --font-default:'Poppins',sans-serif;
  --font-primary:'Poppins',sans-serif;
  --font-secondary:'Poppins',sans-serif;

  /* =========================
     BRAND COLORS
  ========================= */

  --color-primary:#2563eb;
  --color-secondary:#38bdf8;
  --color-accent:#7c3aed;

  /* =========================
     BACKGROUNDS
  ========================= */

  --color-bg:#f8fafc;
  --theme-color:#ffffff;
  --theme-color-dark:#f1f5f9;

  /* =========================
     TEXT COLORS
  ========================= */

  --text-color:#111827;
  --text-grey-color:#6b7280;
  --text-light:#9ca3af;
  --text-white-color:#ffffff;
  --text-theme-color:#2563eb;

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

  --hero-text-color:#ffffff;

  --hero-overlay-color:
  linear-gradient(
    135deg,
    rgba(15,23,42,0.85),
    rgba(30,41,59,0.75)
  );

  --hero-card-bg:
  rgba(255,255,255,0.08);

  /* =========================
     NAVIGATION
  ========================= */

  --menu-color:#0f172a;
  --menu-color-bg:#ffffff;

  /* =========================
     BORDERS
  ========================= */

  --border-color:#e5e7eb;

  /* =========================
     DEFAULT COLORS
  ========================= */

  --color-default:#1f2937;
  --color-start:#2563eb;
  --color-end:#38bdf8;

  /* =========================
     LIGHT
  ========================= */

  --light-color:#ffffff;

  /* =========================
     SHADOWS
  ========================= */

  --shadow-soft:
  0 10px 30px rgba(0,0,0,0.06);

  --shadow-medium:
  0 20px 60px rgba(0,0,0,0.12);

  --box-shadow-color:
  rgba(0,0,0,0.08);

}

:root.dark{

  --color-bg:#020617;

  --theme-color:#020617;
  --theme-color-dark:#0f172a;

  --menu-color:#ffffff;
  --menu-color-bg:#020617;

  --border-color:#1e293b;

  --text-color:#f1f5f9;
  --text-grey-color:#94a3b8;
  --text-light:#64748b;
  --text-white-color:#ffffff;

  --text-theme-color:#38bdf8;

  --color-default:#f1f5f9;

  --hero-overlay-color:
  linear-gradient(
    135deg,
    rgba(2,6,23,0.9),
    rgba(15,23,42,0.85)
  );

  --hero-card-bg:
  rgba(255,255,255,0.05);

  --box-shadow-color:
  rgba(0,0,0,0.5);

}



body.dark{

  --color-bg:#020617;

  --menu-color-bg:#020617;
  --menu-color:#ffffff;

  --border-color:#1e293b;

  --theme-color-dark:#0f172a;

  --text-color:#e5e7eb;
  --text-grey-color:#94a3b8;
  --text-white-color:#ffffff;

  --text-theme-color:#38bdf8;

  --light-color:#020617;

  --color-default:#f1f5f9;

  --color-secondary:#38bdf8;

  --hero-card-bg:rgba(255,255,255,0.05);

  --box-shadow-color:rgba(0,0,0,0.5);

  background:

  radial-gradient(circle at 20% 20%, rgba(56,189,248,0.10), transparent 45%),

  radial-gradient(circle at 80% 80%, rgba(37,99,235,0.10), transparent 45%),

  linear-gradient(
  180deg,
  #020617 0%,
  #020617 50%,
  #020617 100%
  );

}

#darkmode-button{

  display:grid;
  place-items:center;

  width:46px;
  height:46px;

  margin-left:12px;

  border-radius:50%;

  border:1px solid rgba(255,255,255,0.15);

  background:
  linear-gradient(
  145deg,
  rgba(255,255,255,0.6),
  rgba(255,255,255,0.2)
  );

  backdrop-filter:blur(10px);

  cursor:pointer;

  transition:
  transform 0.25s ease,
  box-shadow 0.25s ease,
  background 0.25s ease;

  box-shadow:
  0 6px 18px rgba(0,0,0,0.12);

  outline:none;

}

#darkmode-button:hover{

  transform:translateY(-3px) scale(1.05);

  box-shadow:
  0 12px 30px rgba(37,99,235,0.25);

}

#darkmode-button:active{

  transform:scale(0.95);

}

body.dark #darkmode-button{

  border:1px solid rgba(255,255,255,0.08);

  background:
  linear-gradient(
  145deg,
  rgba(255,255,255,0.08),
  rgba(255,255,255,0.02)
  );

  box-shadow:
  0 8px 24px rgba(0,0,0,0.5);

}

/* LINKS */

a{
  color:var(--color-primary);
  text-decoration:none;
  position:relative;
  font-weight:500;
  transition:
  color 0.25s ease,
  opacity 0.25s ease;
}

a:hover{
  color:var(--color-secondary);
  text-decoration:none;
}


/* Premium underline animation */

a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition:width 0.25s ease;
}

a:hover::after{
  width:100%;
}



/* HEADINGS */

h1,
h2,
h3,
h4,
h5,
h6{
  font-family:var(--font-primary);
  font-weight:600;
  letter-spacing:0;
  line-height:1.3;
  color:var(--color-default);
  margin-top:0;
  margin-bottom:0.6em;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}



/* TYPOGRAPHY SCALE */

h1{
  font-size:56px;
}

h2{
  font-size:40px;
}

h3{
  font-size:30px;
}

h4{
  font-size:24px;
}

h5{
  font-size:20px;
}

h6{
  font-size:16px;
}



/* TABLET */

@media (max-width:991px){

  h1{
    font-size:44px;
  }

  h2{
    font-size:34px;
  }

  h3{
    font-size:26px;
  }

  h4{
    font-size:21px;
  }

}



/* MOBILE TYPOGRAPHY + LINKS */

@media (max-width:768px){

  a{
    transition:color 0.2s ease, opacity 0.2s ease;
  }

  a::after{
    display:none;
  }

  h1{
    font-size:34px;
    line-height:1.25;
  }

  h2{
    font-size:28px;
    line-height:1.3;
  }

  h3{
    font-size:22px;
    line-height:1.35;
  }

  h4{
    font-size:18px;
    line-height:1.4;
  }

  h5{
    font-size:17px;
  }

  h6{
    font-size:15px;
  }

}



/* SMALL MOBILE */

@media (max-width:480px){

  h1{
    font-size:30px;
  }

  h2{
    font-size:24px;
  }

  h3{
    font-size:20px;
  }

}

/* =========================
   THEME TOGGLE CONTAINER
========================= */

.toggle-container{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}



/* =========================
   THEME BUTTON
========================= */

.theme-btn{

  width:50px;
  height:50px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:10px;

  border-radius:50%;
  border:1px solid rgba(255,255,255,0.18);

  cursor:pointer;

  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.25)
  );

  backdrop-filter:blur(10px);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.12);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

}



/* =========================
   HOVER EFFECT
========================= */

.theme-btn:hover{

  transform:translateY(-2px) scale(1.05);

  box-shadow:
    0 10px 28px rgba(37,99,235,0.28);

}



/* =========================
   CLICK EFFECT
========================= */

.theme-btn:active{

  transform:scale(0.94);

}



/* =========================
   ICON
========================= */

.theme-btn img{

  width:22px;
  height:22px;

  object-fit:contain;

  pointer-events:none;

}



/* =========================
   LIGHT BUTTON HIDDEN
========================= */

.theme-btn.light{
  display:none;
}



/* =========================
   DARK MODE BUTTON STYLE
========================= */

body.dark .theme-btn{

  border:1px solid rgba(255,255,255,0.08);

  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  box-shadow:
    0 10px 28px rgba(0,0,0,0.55);

}



/* =========================
   TABLET
========================= */

@media (max-width:991px){

  .theme-btn{
    width:46px;
    height:46px;
  }

}



/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .theme-btn{

    width:42px;
    height:42px;

    padding:8px;

  }

  .theme-btn img{
    width:20px;
    height:20px;
  }

}



/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

  .theme-btn{

    width:38px;
    height:38px;

  }

  .theme-btn img{
    width:18px;
    height:18px;
  }

}

/* =========================
   DARK MODE BUTTON STYLE
========================= */

body.dark .theme-btn{

  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

}



/* Hover Effekt */

body.dark .theme-btn:hover{

  transform:translateY(-2px) scale(1.05);

  box-shadow:
    0 12px 30px rgba(56,189,248,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);

}



/* Klick Effekt */

body.dark .theme-btn:active{

  transform:scale(0.95);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.6);

}

/* =========================
   THEME TOGGLE VISIBILITY
========================= */

/* Im Dark Mode: Dark Icon ausblenden */

.dark .theme-btn.dark{
  display:none;
}

/* Im Dark Mode: Light Icon anzeigen */

.dark .theme-btn.light{
  display:flex;
  align-items:center;
  justify-content:center;
}



/* =========================
   VISIBILITY HELPER
========================= */

.hide-on-mobile{
  display:block;
}



/* =========================
   TABLET
========================= */

@media (max-width:991px){

  .hide-on-mobile{
    display:block;
  }

}



/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .hide-on-mobile{
    display:none !important;
  }

}



/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

  .hide-on-mobile{
    display:none !important;
  }

}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

/* BASE SECTION */

section{
  padding:120px 0;
  overflow:hidden;
}



/* STANDARD SECTION */

.section{
  padding:100px 0;
  overflow:hidden;
  background:var(--light-color);
}



/* GREY SECTION */

.section-grey{
  padding:100px 0;
  overflow:hidden;
  background:var(--theme-color-dark);
}



/* GENERIC BACKGROUND */

.sections-bg{
  background:var(--theme-color-dark);
}



/* SECTION HEADER */

.section-header{
  text-align:center;
  max-width:720px;
  margin:0 auto;
  padding-bottom:60px;
}



.section-header h2{

  font-size:clamp(30px,3vw,42px);

  font-weight:600;

  color:var(--color-primary);

  margin-bottom:16px;

  line-height:1.25;

  letter-spacing:0;

}



.section-header p{

  margin:0;

  font-size:18px;

  line-height:1.7;

  color:var(--text-grey-color);

}



/* IMAGES */

img{

  border-radius:14px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

}



img:hover{

  transform:scale(1.04);

  box-shadow:0 18px 40px rgba(0,0,0,0.12);

}



/* PRIMARY BUTTON */

.fill-btn{

  font-family:var(--font-primary);

  font-weight:500;

  font-size:15px;

  letter-spacing:0.4px;

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:14px 38px;

  border-radius:40px;

  border:none;

  cursor:pointer;

  color:var(--text-white-color);

  background:linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );

  box-shadow:
    0 10px 25px rgba(37,99,235,0.25);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

}



/* BUTTON HOVER */

.fill-btn:hover{

  transform:translateY(-2px);

  background:linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );

  box-shadow:
    0 16px 35px rgba(37,99,235,0.35);

}



/* BUTTON ACTIVE */

.fill-btn:active{

  transform:scale(0.96);

}



/* TABLET */

@media (max-width:991px){

  section{
    padding:90px 0;
  }

  .section{
    padding:80px 0;
  }

}



/* MOBILE */

@media (max-width:768px){

  section{
    padding:70px 0;
  }

  .section{
    padding:60px 0;
  }

  .section-header{
    padding-bottom:40px;
  }

  .section-header p{
    font-size:16px;
  }

}



/* SMALL MOBILE */

@media (max-width:480px){

  section{
    padding:60px 0;
  }

}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

/* PAGE HEADER */

.breadcrumbs .page-header{

  padding:120px 0 70px;

  min-height:22vh;

  position:relative;

  overflow:hidden;

  background:
    url("../images/page-header-bg.png") center bottom / cover no-repeat;

}



/* OVERLAY */

.breadcrumbs .page-header::before{

  content:"";

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.75)
    );

  z-index:0;

}



/* HEADER TEXT */

.breadcrumbs .page-header h2{

  position:relative;

  z-index:1;

  font-size:clamp(30px,3vw,42px);

  font-weight:600;

  color:var(--color-primary);

  margin-bottom:10px;

}



.breadcrumbs .page-header p{

  position:relative;

  z-index:1;

  font-size:17px;

  color:var(--text-grey-color);

}



/* BREADCRUMB BAR */

.breadcrumbs nav{

  background:var(--theme-color);

  border-top:1px solid var(--border-color);

  border-bottom:1px solid var(--border-color);

  padding:16px 0;

}



/* LIST */

.breadcrumbs nav ol{

  display:flex;

  flex-wrap:wrap;

  align-items:center;

  gap:6px;

  list-style:none;

  margin:0;

  padding:0;

  font-size:15px;

  color:var(--text-grey-color);

}



/* LINKS */

.breadcrumbs nav ol a{

  color:var(--color-primary);

  font-weight:500;

  transition:color 0.25s ease;

}



.breadcrumbs nav ol a:hover{

  color:var(--color-secondary);

}



/* SEPARATOR */

.breadcrumbs nav ol li + li::before{

  content:"›";

  margin:0 8px;

  color:var(--text-grey-color);

}



/* TABLET */

@media (max-width:991px){

  .breadcrumbs .page-header{
    padding:100px 0 60px;
  }

}



/* MOBILE */

@media (max-width:768px){

  .breadcrumbs .page-header{
    padding:80px 0 50px;
  }

  .breadcrumbs nav{
    padding:14px 0;
  }

  .breadcrumbs nav ol{
    font-size:14px;
  }

}



/* SMALL MOBILE */

@media (max-width:480px){

  .breadcrumbs nav ol{
    font-size:13px;
  }

}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top{

  position:fixed;

  right:24px;
  bottom:-80px;

  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  cursor:pointer;

  background:linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );

  color:#fff;

  backdrop-filter:blur(10px);

  box-shadow:
    0 12px 30px rgba(37,99,235,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);

  opacity:0;
  visibility:hidden;

  z-index:99999;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    bottom 0.35s ease,
    box-shadow 0.35s ease;

}



/* ICON */

.scroll-top i{

  font-size:22px;

  line-height:1;

  color:#fff;

  transition:transform 0.25s ease;

}



/* HOVER EFFECT */

.scroll-top:hover{

  transform:translateY(-4px) scale(1.06);

  box-shadow:
    0 16px 40px rgba(37,99,235,0.45);

}



/* ICON ANIMATION */

.scroll-top:hover i{

  transform:translateY(-2px);

}



/* ACTIVE STATE */

.scroll-top.active{

  visibility:visible;

  opacity:1;

  bottom:24px;

}



/* DARK MODE */

body.dark .scroll-top{

  background:linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-primary)
  );

  box-shadow:
    0 12px 30px rgba(56,189,248,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);

}



/* TABLET */

@media (max-width:991px){

  .scroll-top{

    width:48px;
    height:48px;

    right:20px;

  }

}



/* MOBILE */

@media (max-width:768px){

  .scroll-top{

    width:44px;
    height:44px;

    right:16px;
    bottom:-70px;

  }

  .scroll-top.active{

    bottom:18px;

  }

  .scroll-top i{

    font-size:20px;

  }

}



/* SMALL MOBILE */

@media (max-width:480px){

  .scroll-top{

    width:40px;
    height:40px;

    right:14px;

  }

  .scroll-top i{

    font-size:18px;

  }

}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader{

  position:fixed;

  inset:0;

  z-index:999999;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  background:
    radial-gradient(circle at 20% 20%, rgba(56,189,248,0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(37,99,235,0.15), transparent 40%),
    linear-gradient(
      135deg,
      #0f172a,
      #020617
    );

  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;

}



/* LOADER */

#preloader::before{

  content:"";

  width:60px;
  height:60px;

  border-radius:50%;

  border:3px solid rgba(255,255,255,0.15);

  border-top:3px solid var(--color-secondary);
  border-right:3px solid var(--color-primary);

  animation:preloader-spin 1.2s linear infinite;

  box-shadow:
    0 0 25px rgba(56,189,248,0.35);

}



/* ANIMATION */

@keyframes preloader-spin{

  0%{
    transform:rotate(0deg);
  }

  100%{
    transform:rotate(360deg);
  }

}



/* TABLET */

@media (max-width:991px){

  #preloader::before{

    width:52px;
    height:52px;

  }

}



/* MOBILE */

@media (max-width:768px){

  #preloader::before{

    width:46px;
    height:46px;

    border-width:2.5px;

  }

}



/* SMALL MOBILE */

@media (max-width:480px){

  #preloader::before{

    width:40px;
    height:40px;

  }

}

/*--------------------------------------------------------------
# Disable AOS animation delays on mobile devices
--------------------------------------------------------------*/

@media (max-width:768px){

  /* Remove animation delays for smoother mobile performance */

  [data-aos],
  [data-aos-delay]{

    transition-delay:0s !important;
    animation-delay:0s !important;

  }

  /* Reduce animation duration */

  [data-aos]{

    transition-duration:0.6s !important;

  }

  /* Utility class */

  .hide-on-mobile{

    display:none !important;

  }

}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* TOPBAR */

.topbar{

  background:linear-gradient(
    90deg,
    #0f172a,
    #1e293b
  );

  height:40px;

  display:flex;
  align-items:center;

  font-size:14px;

  color:#fff;

  transition:all 0.4s ease;

}



/* CONTACT INFO */

.topbar .contact-info i{

  font-style:normal;

  color:#fff;

  line-height:1;

}



.topbar .contact-info i a,
.topbar .contact-info i span{

  padding-left:6px;

  color:rgba(255,255,255,0.9);

}



.topbar .contact-info i a{

  transition:color 0.25s ease;

}



.topbar .contact-info i a:hover{

  color:var(--color-secondary);

}



/* SOCIAL LINKS */

.topbar .social-links a{

  color:rgba(255,255,255,0.7);

  margin-left:18px;

  font-size:15px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;

}



.topbar .social-links a:hover{

  color:#fff;

  transform:translateY(-1px);

}



/* HEADER */

.header{

  height:90px;

  display:flex;
  align-items:center;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;

  z-index:997;

}



/* STICKY HEADER */

.header.sticked{

  position:fixed;

  top:0;
  left:0;
  right:0;

  background:rgba(255,255,255,0.92);

  backdrop-filter:blur(12px);

  box-shadow:
    0 8px 28px rgba(0,0,0,0.08);

}



/* LOGO */

.header .logo img{

  max-height:42px;

  margin-right:8px;

}



.header .logo h1{

  font-size:28px;

  font-weight:600;

  margin:0;

  letter-spacing:0;

  color:var(--color-primary);

  font-family:var(--font-primary);

}



.header .logo h1 span{

  color:var(--color-secondary);

}



/* HEADER STICKY STYLE */

.header.stikcy-menu{

  background:var(--light-color);

}



.header.stikcy-menu .logo h1{

  color:var(--color-primary);

}



/* OFFSET */

.sticked-header-offset{

  margin-top:0;

}



/* SECTION DEFAULT BACKGROUND */

section{

  background:var(--light-color);

}



/* TABLET */

@media (max-width:991px){

  .header{

    height:80px;

  }

}



/* MOBILE */

@media (max-width:768px){

  .topbar{

    height:auto;

    padding:6px 0;

    font-size:13px;

  }

  .header{

    height:72px;

  }

  .header .logo img{

    max-height:36px;

  }

}



/* SMALL MOBILE */

@media (max-width:480px){

  .topbar .social-links{

    display:none;

  }

}
/*--------------------------------------------------------------
# Desktop Navigation (Premium AI Style)
--------------------------------------------------------------*/

@media (min-width:1280px){

.navbar{
  padding:0;
  display:flex;
  align-items:center;
}

/* NAV LIST */

.navbar ul{
  margin:0;
  padding:0;

  display:flex;
  align-items:center;
  gap:32px;

  list-style:none;
}

/* NAV ITEMS */

.navbar li{
  position:relative;
}

/* MAIN LINKS */

.navbar > ul > li{
  white-space:nowrap;
}

/* LINK STYLE */

.navbar a,
.navbar a:focus{

  position:relative;

  display:flex;
  align-items:center;

  font-family:var(--font-secondary);
  font-size:15px;
  font-weight:500;

  letter-spacing:0.02em;

  color:var(--menu-color);

  padding:6px 0;

  transition:
  color 0.25s ease,
  opacity 0.25s ease;

}



/* STICKY HEADER LINK COLOR */

.stikcy-menu .navbar a{
  color:var(--text-color);
}



/* UNDERLINE EFFECT */

.navbar a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-6px;

  width:0;
  height:2px;

  border-radius:2px;

  background:
  linear-gradient(
  90deg,
  var(--color-primary),
  var(--color-secondary)
  );

  transition:width 0.25s ease;

}



/* HOVER */

.navbar a:hover{

  color:var(--color-primary);

}



/* UNDERLINE ON HOVER */

.navbar a:hover::after,
.navbar .active::after{

  width:100%;

}



/* ICONS */

.navbar a i,
.navbar a:focus i{

  font-size:12px;
  margin-left:6px;

  opacity:0.7;

}



/*--------------------------------------------------------------
# Dropdown
--------------------------------------------------------------*/

.navbar .dropdown ul{

  position:absolute;

  top:calc(100% + 18px);
  left:0;

  min-width:220px;

  padding:12px 0;

  margin:0;

  opacity:0;
  visibility:hidden;

  border-radius:12px;

  backdrop-filter:blur(12px);

  background:rgba(255,255,255,0.95);

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

  transition:
  opacity 0.25s ease,
  transform 0.25s ease;

  transform:translateY(10px);

}



/* DROPDOWN ITEMS */

.navbar .dropdown ul li{

  min-width:200px;

}



/* DROPDOWN LINKS */

.navbar .dropdown ul a{

  padding:10px 20px;

  font-size:14px;
  font-weight:500;

  color:var(--text-color);

  transition:
  background 0.2s ease,
  color 0.2s ease;

}



/* DROPDOWN HOVER */

.navbar .dropdown ul a:hover{

  color:var(--color-primary);

  background:rgba(37,99,235,0.08);

}



/* SHOW DROPDOWN */

.navbar .dropdown:hover > ul{

  opacity:1;
  visibility:visible;

  transform:translateY(0);

}



/* SUB DROPDOWN */

.navbar .dropdown .dropdown ul{

  top:0;
  left:calc(100% + 6px);

  opacity:0;
  visibility:hidden;

}



/* SUB DROPDOWN SHOW */

.navbar .dropdown .dropdown:hover > ul{

  opacity:1;
  visibility:visible;

}



/*--------------------------------------------------------------
# RESPONSIVE FIX
--------------------------------------------------------------*/

}

@media (min-width:1280px) and (max-width:1366px){

.navbar ul{
  gap:24px;
}

}



/*--------------------------------------------------------------
# Hide Mobile Toggle On Desktop
--------------------------------------------------------------*/

@media (min-width:1280px){

.mobile-nav-show,
.mobile-nav-hide{
  display:none;
}

}
/*--------------------------------------------------------------
# Mobile Navigation (Premium Modern)
--------------------------------------------------------------*/

@media (max-width:1279px){

/* NAV CONTAINER */

.navbar{

  position:fixed;

  top:0;
  right:-100%;

  width:100%;
  max-width:380px;

  height:100vh;

  transition:right 0.35s ease;

  z-index:9997;

}



/* NAV PANEL */

.navbar ul{

  position:absolute;

  inset:0;

  padding:90px 0 30px;

  margin:0;

  overflow-y:auto;

  list-style:none;

  background:

  linear-gradient(
  180deg,
  #0f172a,
  #1e293b
  );

  backdrop-filter:blur(10px);

  z-index:9998;

}



/* NAV LINKS */

.navbar a,
.navbar a:focus{

  display:flex;

  align-items:center;
  justify-content:space-between;

  padding:16px 26px;

  font-family:var(--font-primary);

  font-size:16px;
  font-weight:500;

  color:#ffffff;

  letter-spacing:0.02em;

  transition:
  background 0.25s ease,
  transform 0.2s ease;

}



/* LINK HOVER */

.navbar a:hover{

  background:rgba(255,255,255,0.08);

  transform:translateX(4px);

}



/* ICON */

.navbar a i{

  font-size:13px;

  margin-left:8px;

  opacity:0.7;

}



/* DROPDOWN */

.navbar .dropdown ul,
.navbar .dropdown .dropdown ul{

  position:static;

  display:none;

  padding:8px 0;

  margin:0 0 8px;

  background:rgba(255,255,255,0.04);

  border-left:2px solid rgba(255,255,255,0.15);

}



/* DROPDOWN ACTIVE */

.navbar .dropdown>.dropdown-active,
.navbar .dropdown .dropdown>.dropdown-active{

  display:block;

}



/* MOBILE MENU BUTTON */

.mobile-nav-show{

  color:var(--color-primary);

  font-size:30px;

  cursor:pointer;

  line-height:0;

  z-index:9999;

  margin-right:12px;

  transition:transform 0.25s ease;

}



.mobile-nav-show:hover{

  transform:scale(1.1);

}



/* CLOSE BUTTON */

.mobile-nav-hide{

  position:fixed;

  right:22px;
  top:22px;

  font-size:32px;

  color:#ffffff;

  cursor:pointer;

  z-index:9999;

}



/* BODY LOCK */

.mobile-nav-active{

  overflow:hidden;

}



/* SHOW MENU */

.mobile-nav-active .navbar{

  right:0;

}



/* BACKDROP */

.mobile-nav-active .navbar:before{

  content:"";

  position:fixed;

  inset:0;

  background:rgba(0,0,0,0.65);

  backdrop-filter:blur(4px);

  z-index:9996;

}

}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/

.left {
  text-align: right;
}
.right {
  text-align: left;
}
.list-wrap{
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.list-wrap p{
  color: var(--text-color);
}
.list-wrap:nth-child(3),
.list-wrap:nth-child(6){
  margin-bottom: 0;
}

.list-wrap .description h4{
  color: var(--text-color);
}

.icon {
  width: 150px;
  text-align: center;
  height: 100px;
  border-radius: 50%;
}
.icon svg{
  width: 100%;
}
.list-center-wrap{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  height: 100%;
}
.center-icon{
  width: 100%;
  text-align: center;
}
.center-icon img{
  width: 100%;
  border-radius: 20px;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# About Us Section (Premium Modern)
--------------------------------------------------------------*/

.about h3{

  font-size:32px;

  font-weight:600;

  line-height:1.3;

  letter-spacing:-0.02em;

  margin-bottom:22px;

  font-family:var(--font-secondary);

  color:var(--color-default);

}



/* CALL BOX */

.about .call-us{

  left:10%;
  right:10%;
  bottom:0;

  padding:26px;

  text-align:center;

  border-radius:16px;

  background:

  linear-gradient(
  135deg,
  rgba(255,255,255,0.95),
  rgba(255,255,255,0.8)
  );

  backdrop-filter:blur(10px);

  box-shadow:

  0 18px 40px rgba(0,0,0,0.12);

}



.about .call-us h4{

  font-size:20px;

  font-weight:600;

  margin-bottom:6px;

  color:var(--color-default);

}



.about .call-us p{

  font-size:26px;

  font-weight:600;

  color:var(--color-primary);

}



/* CONTENT LIST */

.about .content ul{

  list-style:none;

  padding:0;

  margin-top:18px;

}



.about .content ul li{

  position:relative;

  padding:0 0 14px 34px;

  font-size:15px;

  color:var(--text-grey-color);

  line-height:1.7;

}



/* CHECK ICON */

.about .content ul i{

  position:absolute;

  left:0;
  top:2px;

  font-size:18px;

  color:var(--color-primary);

}



.about .content p:last-child{

  margin-bottom:0;

}



/*--------------------------------------------------------------
# Play Button (Modern)
--------------------------------------------------------------*/

.about .play-btn{

  width:88px;
  height:88px;

  border-radius:50%;

  position:absolute;

  left:50%;
  top:50%;

  transform:translate(-50%,-50%);

  display:flex;

  align-items:center;
  justify-content:center;

  background:

  linear-gradient(
  135deg,
  var(--color-primary),
  var(--color-secondary)
  );

  box-shadow:

  0 18px 40px rgba(37,99,235,0.35);

  transition:
  transform 0.25s ease,
  box-shadow 0.25s ease;

}



/* PLAY TRIANGLE */

.about .play-btn:after{

  content:"";

  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:16px solid #fff;

  margin-left:4px;

}



/* PLAY HOVER */

.about .play-btn:hover{

  transform:translate(-50%,-50%) scale(1.08);

  box-shadow:

  0 25px 60px rgba(37,99,235,0.45);

}



/*--------------------------------------------------------------
# Image Frame
--------------------------------------------------------------*/

.img-frame{

  position:relative;

  padding:10%;

  border-radius:18px;

  background:

  linear-gradient(
  135deg,
  #f8fafc,
  #eef2f7
  );

}



/*--------------------------------------------------------------
# Skill Bars
--------------------------------------------------------------*/

.bar{

  position:relative;

  background:#e5e7eb;

  border-radius:30px;

  height:12px;

  margin-bottom:22px;

  overflow:hidden;

}



/* PROGRESS */

.bar::before{

  content:attr(data-skill);

  position:absolute;

  left:0;
  top:0;

  height:100%;

  display:flex;

  align-items:center;

  padding-left:12px;

  font-size:11px;

  font-weight:600;

  color:#fff;

  border-radius:30px;

  background:

  linear-gradient(
  90deg,
  var(--color-primary),
  var(--color-secondary)
  );

  animation:load 2s ease;

}



/* BAR LEVELS */

.bar.learning::before{
  width:20%;
}

.bar.basic::before{
  width:40%;
}

.bar.intermediate::before{
  width:60%;
}

.bar.advanced::before{
  width:80%;
}

.bar.expert::before{
  width:100%;
}



/* ANIMATION */

@keyframes load{

0%{
width:0;
}

}



/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width:991px){

.about h3{
font-size:26px;
}

.about .call-us{

left:0;
right:0;

margin-top:30px;

}

}



@media (max-width:768px){

.about .play-btn{

width:70px;
height:70px;

}

}

/*--------------------------------------------------------------
# Clients Section (Premium Trust Logos)
--------------------------------------------------------------*/

.clients{

  padding:110px 0;

  background:

  linear-gradient(
  180deg,
  #f8fafc,
  #ffffff
  );

}



/* SWIPER */

.clients .swiper{

  padding:20px 0;

}



/* LOGO CARD */

.clients .swiper-slide{

  display:flex;

  align-items:center;
  justify-content:center;

}



/* LOGO */

.clients .swiper-slide img{

  max-width:140px;

  opacity:0.65;

  filter:grayscale(100%);

  transition:

  transform 0.35s ease,
  opacity 0.35s ease,
  filter 0.35s ease;

}



/* HOVER EFFECT */

.clients .swiper-slide img:hover{

  opacity:1;

  filter:grayscale(0%);

  transform:scale(1.08);

}



/* PAGINATION */

.clients .swiper-pagination{

  margin-top:28px;

  position:relative;

}



/* BULLETS */

.clients .swiper-pagination .swiper-pagination-bullet{

  width:10px;
  height:10px;

  border-radius:50%;

  background:#d1d5db;

  opacity:1;

  transition:

  transform 0.25s ease,
  background 0.25s ease;

}



/* ACTIVE BULLET */

.clients .swiper-pagination .swiper-pagination-bullet-active{

  background:var(--color-primary);

  transform:scale(1.4);

}



/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width:768px){

.clients{

padding:80px 0;

}

.clients .swiper-slide img{

max-width:110px;

}

}

/*--------------------------------------------------------------
# Call To Action Section (Premium Modern)
--------------------------------------------------------------*/

.call-to-action{

  position:relative;

  padding:160px 0;

  text-align:center;

  overflow:hidden;

  background:

  linear-gradient(
  135deg,
  #0f172a,
  #1e293b
  );

}



/* BACKGROUND PATTERN */

.call-to-action:before{

  content:"";

  position:absolute;

  inset:0;

  background:

  radial-gradient(
  circle at 20% 20%,
  rgba(37,99,235,0.25),
  transparent 40%
  ),
  radial-gradient(
  circle at 80% 80%,
  rgba(56,189,248,0.25),
  transparent 40%
  );

  opacity:0.7;

}



/* CONTENT */

.call-to-action .container{

  position:relative;

  z-index:2;

}



/* TITLE */

.call-to-action h3{

  color:#ffffff;

  font-size:36px;

  font-weight:600;

  letter-spacing:-0.02em;

  margin-bottom:18px;

}



/* TEXT */

.call-to-action p{

  color:rgba(255,255,255,0.8);

  font-size:17px;

  line-height:1.7;

  max-width:640px;

  margin:0 auto 30px;

}



/*--------------------------------------------------------------
# CTA BUTTON
--------------------------------------------------------------*/

.call-to-action .cta-btn{

  display:inline-block;

  padding:14px 42px;

  border-radius:40px;

  font-size:15px;

  font-weight:600;

  letter-spacing:0.02em;

  color:#fff;

  background:

  linear-gradient(
  90deg,
  var(--color-primary),
  var(--color-secondary)
  );

  box-shadow:

  0 10px 30px rgba(37,99,235,0.35);

  transition:
  transform 0.25s ease,
  box-shadow 0.25s ease;

}



/* CTA HOVER */

.call-to-action .cta-btn:hover{

  transform:translateY(-3px);

  box-shadow:

  0 20px 45px rgba(37,99,235,0.45);

}



/*--------------------------------------------------------------
# PLAY BUTTON
--------------------------------------------------------------*/

.call-to-action .play-btn{

  width:84px;
  height:84px;

  margin-bottom:24px;

  border-radius:50%;

  display:inline-flex;

  align-items:center;
  justify-content:center;

  position:relative;

  background:

  linear-gradient(
  135deg,
  var(--color-primary),
  var(--color-secondary)
  );

  box-shadow:

  0 15px 40px rgba(37,99,235,0.35);

  transition:
  transform 0.25s ease,
  box-shadow 0.25s ease;

}



/* PLAY ICON */

.call-to-action .play-btn:after{

  content:"";

  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:16px solid #fff;

  margin-left:4px;

}



/* PLAY HOVER */

.call-to-action .play-btn:hover{

  transform:scale(1.08);

  box-shadow:

  0 20px 50px rgba(37,99,235,0.45);

}



/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width:991px){

.call-to-action{

padding:120px 20px;

}

.call-to-action h3{

font-size:28px;

}

}



@media (max-width:768px){

.call-to-action{

padding:100px 20px;

}

.call-to-action h3{

font-size:24px;

}

.call-to-action p{

font-size:15px;

}

}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}
.testimonials .testimonial-item .info-box{
  min-width: 276px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-primary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-primary);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: var(--text-color);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(134 134 134 / 20%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    flex-direction: column;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 10px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
  color: var(--color-primary);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: var(--text-color);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  color: var(--color-primary);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8e8e8;
}

.team .member .social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.team .member .social i {
  font-size: 14px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--theme-color-dark);
  border: 1px solid var(--border-color);
}

.accordion-flush .accordion-item:last-child{
  border-bottom: 1px solid var(--border-color);
}


.faq .accordion-collapse {
  border: 0;
  background: var(--theme-color-dark);
  border-radius: 0 8px 8px 0;
}

.accordion-flush .accordion-item:first-child{
  border: 1px solid var(--border-color);
}

.faq .accordion-button {
  background: var(--theme-color-dark);
  padding: 20px 50px 20px 20px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-primary);
  text-align: left;
  box-shadow: none;
  border-radius: 8px !important;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
  background: url(../images/icons/down-arrow.svg);
}

.faq .accordion-body {
  padding: 40px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: var(--theme-color-dark);
  box-shadow: none;
  color: var(--text-color);
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background-color: var(--light-color);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  border-radius: 8px;
}

.recent-posts .post-category {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--text-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  margin-bottom: 5px;
  color: var(--text-color);
}

.recent-posts .post-date {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: url(../images/hero-bg.png) center center;
  background-size: cover;
  padding: 60px 0 0 0;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
  margin-top: 0;
  background: linear-gradient(360deg, var(--hero-overlay-color), var(--hero-overlay-color));
}
.hero .circle{
  color: var(--color-primary);
}
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.dark-bg{
  padding: 50px 30px;
  border-radius: 8px;
}
.social {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  gap: 10px;
}

.social a {
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.social i {
  font-size: 14px;
  margin: 0 2px;
  color: var(--color-primary);
}
.mr-20{
  margin-right: 20px !important;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--hero-text-color);
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.hero span{
  color: var(--color-primary);
  font-weight: bold;
}

.hero p {
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 30px;
}

.btn-get-started{

background:linear-gradient(135deg,#2563eb,#38bdf8);
padding:14px 32px;
border-radius:40px;
font-weight:600;
font-size:16px;
box-shadow:0 10px 25px rgba(37,99,235,0.35);
transition:0.25s;
}

.btn-get-started:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(37,99,235,0.45);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .hero {
    background: url(../images/hero-bg.png) center center;
  }
  .hero h2 {
    font-size: 22px;
  }
  .call-to-action {
    background: url(../images/cta-bg.jpg) center left;
      background-size: cover;
      padding: 150px 60px;
      border-radius: 0px;
      overflow: hidden;
  }
}

@media (max-width: 767px) {
  .text-left.caption{
    text-align: center;
  }
  .caption .justify-content-start{
    justify-content: center !important;
  }
  .caption .social{
    justify-content: center;
  }
  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
  .icon-boxes .card-two{
    margin-top: var(--bs-gutter-y);
    margin-bottom: 0px;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);

  }
}
@media (min-width: 768px) {
  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
  .icon-boxes .card-two{
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

.icon-box{
  position:relative;
  overflow:hidden;
  padding:35px 30px;

  border-radius:16px;

  height:100%;
  width:100%;

  text-align:center;

  color:var(--text-color);
  background:var(--light-color);

  border:1px solid var(--border-color);

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

  transition:all 0.35s ease;

  z-index:1;
}

.icon-box:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.icon-box::before{
content:"";
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;
background:radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 60%);
opacity:0;
transition:0.4s;
}

.icon-box:hover::before{
opacity:1;
}
.icon-box .icon img{
  width: 77px;
}

.icon-box .title {
  margin-bottom: 15px;
  font-size: 24px;
}

.icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--color-primary);
}

.icon-box:hover {transform: scale(1.04);}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

.blog-sidbar{
  background-color: var(--light-color);
  padding: 30px 20px;
  border-radius: 8px;
}

.blog-sidbar ul li a:hover{color: rgb(74 74 74);}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 500;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
dl, ol, ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.single-page ul{
  list-style: none;
}
.single-page ul li{
  position: relative;
  color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 8px;
}
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}
.search-form {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 0;
}
.search-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ffffff;
  border: none;
  color: #393838;
  outline: none;
}
.search-form button {
  position: absolute;
  right: 0;
  padding: 16px 20px;
  border: none;
  top: 0px;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  outline: none;
}
.search-form button:hover {
  cursor: pointer;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}
.search-form button i{
  color: #fff;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/*--------------------------------------------------------------
# Stats Counter Section (Fixed Visibility)
--------------------------------------------------------------*/

.stats-counter{
  position:relative;
  padding:120px 0;

  background:
  linear-gradient(
  180deg,
  #f8fafc,
  #eef2f7
  );
}



/* ITEM */

.stats-counter .stats-item{

  text-align:center;

  padding:40px 20px;

}



/* ICON */

.stats-counter .stats-item i{

  font-size:80px;
  line-height:1;

  margin-bottom:25px;

  color:var(--color-primary);

  opacity:1;

}


/* NUMBER */

.stats-counter .stats-item span{

  display:block;

  font-size:34px;

  font-weight:700;

  line-height:1.2;

  margin-bottom:10px;

  color:var(--color-primary);

}



/* TEXT */

.stats-counter .stats-item p{

  margin:0;

  font-family:var(--font-primary);

  font-size:16px;

  font-weight:500;

  line-height:1.6;

  color:var(--text-color);

}



/* DARK MODE FIX */

body.dark .stats-counter{

  background:

  linear-gradient(
  180deg,
  #020617,
  #020617
  );

}

.stats-counter .stats-item i{
text-shadow:0 6px 18px rgba(0,0,0,0.15);
}

body.dark .stats-counter .stats-item p{

  color:#e5e7eb;

}



/* MOBILE */

@media (max-width:768px){

.stats-counter{
padding:80px 0;
}

.stats-counter .stats-item span{
font-size:28px;
}

.stats-counter .stats-item p{
font-size:15px;
}

.stats-counter .stats-item i{
font-size:64px;
}

}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 40px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-white-color);
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  background: var(--color-secondary);
  border-radius: 0 8px 0 0;
}

.portfolio .portfolio-wrap .portfolio-info:hover {
  background: #1c042e;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--light-color);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}
.portfolio .portfolio-wrap .project-btn a {
  color: var(--light-color);
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-details {
  margin-bottom: 20px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.card {
    position: relative;
    height: auto;
    background: var(--light-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin: 0 auto;
    padding: 40px 20px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    overflow: hidden;
    margin-bottom: 20px;
    border: 0;
    box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.card:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.card .title img{
  width: 120px;
}

.col-sm-3:nth-child(1) .card,
.col-sm-3:nth-child(1) .card .title .fa {
    /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(2) .card,
.col-sm-4:nth-child(2) .card .title .fa {
    /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(3) .card,
.col-sm-3:nth-child(3) .card .title .fa {
    background: linear-gradient(-45deg, var(--color-primary), #ec9f00);
}

.col-sm-3:nth-child(3) .card a {
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    transform: skewY(-5deg) scale(1.5);
    -webkit-transform: skewY(-5deg) scale(1.5);
    -moz-transform: skewY(-5deg) scale(1.5);
    -ms-transform: skewY(-5deg) scale(1.5);
    -o-transform: skewY(-5deg) scale(1.5);
}

.title .fa {
    color: #fff;
    font-size: 60px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 100px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
}

.title h2 {
    position: relative;
    margin: 20px 0 0;
    padding: 0;
    color: var(--text-color);
    font-size: 28px;
    z-index: 2;
}

.price {
    position: relative;
    z-index: 2;
    color: var(--text-color);
}

.price h4 {
    margin: 0;
    padding: 20px 0;
    color: var(--text-color);
    font-size: 60px;
}

.option {
    position: relative;
    z-index: 2;
}

.option ul {
    margin: 0;
    padding: 0;
}

.option ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: var(--text-color);
    font-size: 16px;
}

.card a {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
    padding: 15px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-white-color);
    z-index: 2;
    margin: 20px auto 0;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.card a:hover {
    text-decoration: none;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/**************************************
  Contact
 **************************************/
 .contact-section .contact-form-3 form .form-control {
  font-size: 15px;
  width: 100%;
  padding: 10px 20px;
  height: 52px;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-transform: capitalize;
  transition: all 0.4s;
  background: var(--theme-color-dark);
}

.contact-section .contact-form-3 form input:focus,
.contact-section .contact-form-3 form textarea:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-information-box-3 {
  padding: 25px 20px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.contact-information-box-3 .single-contact-info-box {
  position: relative;
  z-index: 1;
  padding: 10px 10px;
  display: block;
  border-radius: 3px;
  text-align: left;
  margin-bottom: 10px;
  overflow: hidden;
}

.contact-information-box-3 .contact-info {
  position: relative;
  z-index: 1;
}

.contact-information-box-3 .contact-info h6 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 7px;
  text-transform: capitalize;
}

.contact-information-box-3 .contact-info p {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon {
  color: #f44336;
  opacity: .2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon i {
  font-size: 100px;
}

.contact-section .contact-form .form-group {
  margin-bottom: 30px;
}

.contact-section .contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
  line-height: initial;
}

.contact-section .form-message {
  margin: 0;
}
.contact-form button[type=submit]{
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 0;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}
.contact-form button[type=submit]:hover{
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.contact-section .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-section .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-area .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.contact-area .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}
.with-errors{
  color: #dc3545;
}

.messages {
  margin-top: 30px;
}

.alert-success {
  margin-left: 15px;
}

.hidden {
  display: none;
}


/*--------------------------------------------------------------
# Particles
--------------------------------------------------------------*/
#particles-js {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
canvas{
  display:block;
  vertical-align:bottom;
}


.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 3px 3px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer-section{
  position:relative;
  padding:100px 0;

  background:
  radial-gradient(circle at 20% 20%, rgba(56,189,248,0.15), transparent 40%),
  radial-gradient(circle at 80% 80%, rgba(37,99,235,0.15), transparent 40%),
  linear-gradient(135deg,#0f172a,#020617);

  color:#ffffff;

  overflow:hidden;
}

.footer-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:
linear-gradient(
180deg,
rgba(2,6,23,0.2),
rgba(2,6,23,0.9)
);

z-index:0;
}
.footer-cta{
border-bottom:1px solid rgba(255,255,255,0.08);
padding-bottom:40px;
margin-bottom:40px;
}

.footer-section::after{
content:"";
position:absolute;
top:-200px;
left:-200px;

width:600px;
height:600px;

background:radial-gradient(
circle,
rgba(56,189,248,0.15),
transparent 70%
);

filter:blur(120px);
z-index:0;
}

.copyright-text{
  margin-top: 30px;
}

.single-cta i {
  color: #c00113;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #c00113;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}
.footer-content .list{
  padding-left: 0;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}
.footer-widget ul li,
.footer-widget ul li a{
  font-size: 14px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-white-color);
  line-height: 28px;
}

.footer-social-icon span {
  color: var(--color-primary);
  display: block;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
}

.facebook-bg {
  background: var(--color-primary);
}

.twitter-bg {
  background: var(--color-primary);
}

.google-bg {
  background: var(--color-primary);
}

.footer-widget-heading h3 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--color-primary);
}

.footer-widget ul li a {
  color: var(--text-white-color);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #e4e4e4;
  border: 1px solid #e4e4e4;
  color: #222222;
  outline: none;
}

.subscribe-form button {
  position: absolute;
  right: -3px;
  background: transparent;
  border: 0;
  top: -8px;
}

.subscribe-form button i {
  color: var(--color-primary);
  font-size: 3rem;
  transform: rotate(-6deg);
}

.copyright-area {
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #b9b9b9;
}

.copyright-text p a {
  color: var(--color-primary);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: var(--color-primary);
}

.footer-menu li a {
  font-size: 14px;
  color: #b9b9b9;
}

.footer-menu li a:hover {
  color: #000000;
}


/* COOKIE BANNER */

/* COOKIE BANNER */

#cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #0c1730;
  color: #ffffff;
  z-index: 99999;
  padding: 18px 10px 14px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
  display: none;
}

#cookie-banner .cookie-inner{
  max-width: 1900px;
  margin: 0 auto;
  text-align: center;
}

#cookie-banner .cookie-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #ffffff;
}

#cookie-banner .cookie-privacy{
  display: inline-block;
  margin: 0 0 18px;
  color: #00f0d0;
  font-weight: 600;
  text-decoration: none;
}

#cookie-banner .cookie-privacy:hover{
  color: #ffffff;
}

#cookie-banner .cookie-btn{
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 13px 18px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #147bff, #1d8fff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#cookie-banner .cookie-btn:hover{
  opacity: 0.95;
  transform: translateY(-1px);
}

#cookie-banner .cookie-btn:last-child{
  margin-bottom: 0;
}

@media (max-width: 768px){
  #cookie-banner{
    padding: 16px 8px 12px;
  }

  #cookie-banner .cookie-text{
    font-size: 13px;
    line-height: 1.7;
  }

  #cookie-banner .cookie-btn{
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 9px;
  }
}



/* FLOATING PRIVACY BUTTON */

#privacy-policy-link{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100000;
}

#privacy-policy-link a{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #147bff;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.18);
}

#privacy-policy-link a:hover{
  opacity: 0.95;
  transform: translateY(-1px);
}

#privacy-policy-link i{
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 768px){
  #privacy-policy-link{
    right: 14px;
    bottom: 14px;
  }

  #privacy-policy-link a{
    width: 46px;
    height: 46px;
  }

  #privacy-policy-link i{
    font-size: 18px;
  }
}

/* COOKIE ICON */

#cookie-icon{
position:fixed;
right:18px;
bottom:80px;
z-index:100001;
}

#cookie-icon button{
width:48px;
height:48px;
border-radius:50%;
border:none;
background:#147bff;
color:white;
font-size:20px;
cursor:pointer;
box-shadow:0 6px 18px rgba(0,0,0,0.3);
}

#cookie-icon button:hover{
transform:translateY(-2px);
}