/* ==========================================================================
   AGENCY SITE — DESIGN SYSTEM
   Headings: Sora  /  Body: Inter
   Ink #0A0E1A · Panel #121A2E · Accent #4C7CF0 · Amber (CTA only) #F2A93B
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  /* color — sampled directly from the Exploria Designs logo:
     cyan #0D96D5, navy #0A2130 */
  --ink:        #081722;
  --ink-soft:   #0B1F2E;
  --panel:      #0F2A3D;
  --panel-2:    #133248;
  --line:       #1E4058;
  --line-soft:  rgba(255,255,255,0.08);
  --text:       #EAF3FA;
  --text-muted: #93AABC;
  --text-dim:   #5E7C90;
  --accent:     #0D96D5;
  --accent-2:   #4FC6F0;
  --accent-ink: #081722;
  --amber:      #F5A623;
  --amber-2:    #FFC15C;
  --success:    #3FD6A0;
  --white:      #FFFFFF;

  /* brand gradient stops (navy → cyan, matches the logo mark) */
  --grad-deep:   #071620;
  --grad-mid:    #0E3855;
  --grad-bright: #0D96D5;

  /* elevation */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 999px;
  --shadow-sm:  0 2px 10px rgba(3, 8, 14, 0.4);
  --shadow-md:  0 10px 30px rgba(3, 8, 14, 0.5);
  --shadow-lg:  0 24px 60px rgba(3, 8, 14, 0.6);
  --shadow-accent: 0 12px 30px rgba(13, 150, 213, 0.3);

  /* type */
  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --speed: 0.28s;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html{
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body{
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  background-color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.body-color-three{
  background-color: var(--ink-soft);
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

::selection{
  background: var(--accent);
  color: var(--white);
}

a{
  display: inline-block;
  transition: all var(--speed) var(--ease);
  text-decoration: none;
  color: var(--text-muted);
}
a:hover{
  text-decoration: none;
  color: var(--accent-2);
}
a:focus{
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

button{
  outline: 0 !important;
  box-shadow: none;
  border: none;
  font-family: var(--font-body);
}
button:focus{
  box-shadow: none;
}

html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, section, div, span, aside{
  padding: 0;
  margin: 0;
}

.d-table{ width: 100%; height: 100%; }
.d-table-cell{ vertical-align: middle; }

p{
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

img{ max-width: 100%; height: auto; }

ul{ list-style: none; padding: 0; margin: 0; }

/* ---- shared section title -------------------------------------------- */
.section-title{
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2{
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
  color: var(--text);
}
.section-title p{
  margin-bottom: 0;
  color: var(--text-muted);
}
.section-title h2::before{
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--line);
  bottom: 0;
  left: calc(50% - 30px);
}
.section-title h2::after{
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  bottom: -1px;
  left: calc(50% - 13px);
}
.section-title h2 span{
  font-size: 33px;
  display: block;
}
.section-title p.bigger-font{
  font-size: 20px;
  line-height: 28px;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.top_header{
  padding: 8px 0;
  background-color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.hdr-left{
  font: 400 14px/32px var(--font-body);
  color: var(--text-muted);
}
.hdr-right{ text-align: right; }
.hdr-right ul li{
  display: inline-block;
  margin: 0 15px 0 0;
}
.hdr-right img{
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 100%;
  margin: 0 6px 0 0;
}
.hdr-right ul li a{
  font: 500 14px/25px var(--font-body);
  color: var(--text-muted);
}
.hdr-right ul li a:hover{ color: var(--accent-2); }
.hdr-right .request-btn{
  font: 500 14px/32px var(--font-body);
  padding: 4px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-pill);
  transition: all var(--speed) var(--ease);
}
.hdr-right .request-btn:hover{
  background: var(--accent-2);
  color: var(--ink);
  box-shadow: var(--shadow-accent);
}

/* navigation bar */
.navbar{
  background: var(--ink-soft);
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(13,150,213,0.15);
}
.navbar-light .navbar-brand{
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
}
.navbar-light .navbar-nav .nav-link{
  color: var(--text-muted);
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover{
  color: var(--accent-2);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover{
  color: var(--text);
}
.navbar-light .navbar-nav .nav-link{
  padding-top: 22px;
  padding-bottom: 22px;
  transition: 0.3s;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover{
  background: transparent;
  color: var(--accent-2);
  transition: 0.3s;
}
.dropdown-item:focus,
.dropdown-item:hover{
  color: var(--white);
  text-decoration: none;
  background-color: var(--accent) !important;
}
.sm-menu{
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  top: 97%;
  background: var(--panel);
  box-shadow: var(--shadow-md);
}
.dropdown-item{
  color: var(--text-muted);
  font-size: 14px;
}
.dropdown-item.active,
.dropdown-item:active{
  color: var(--white);
  text-decoration: none;
  background-color: var(--accent);
}
.navbar-toggler{ outline: none !important; }
.navbar-tog{ color: var(--accent-2); }
.megamenu-li{ position: static; }
.megamenu{
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  padding: 24px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.megamenu h6{
  margin-left: 21px;
  color: var(--text);
}
.megamenu i{ width: 20px; color: var(--accent); }
.border-right{
  border-right: 1px solid var(--line) !important;
}

/* =========================================================================
   HOME BANNER
   ========================================================================= */
.home_banner{
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--ink);
  background-image: radial-gradient(circle at 68% 45%, rgba(13,150,213,0.18), transparent 55%);
}
.bnr_txt h1{
  font: 600 46px/56px var(--font-display);
  color: var(--white);
  margin-bottom: 22px;
}
.bnr_txt p,
.counting li{
  font: 300 18px/28px var(--font-body);
  color: var(--text-muted);
}
.counting{ margin: 55px 0 0 0; }
.counting li i{
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--accent-2);
}
.counting li{
  display: inline-block;
  padding: 0 45px 0 0;
  text-align: left;
}
.counting li strong{
  font: 700 32px/40px var(--font-display);
  color: var(--white);
  display: block;
}

.bnr_right_part{ padding: 0 0 0 30px; }
.bnr_right_part ul{ margin: 0 0 50px 0; }
.bnr_right_part li{
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0px;
}
.bnr_right_part li a,
.bnrslider li a{
  font: 400 15px/25px var(--font-body);
  color: var(--white);
  display: flex;
  align-items: center;
}
.frture_serv li i{
  font-size: 28px;
  color: var(--amber);
  margin: 0 15px 0 0;
  width: 32px;
}
.frture_serv li:first-child i{ font-size: 46px; }
.bnr_right_part h5{
  font: 600 20px/25px var(--font-display);
  color: var(--amber);
  margin: 0 0 20px 0;
}

/* =========================================================================
   ABOUT / CLIENTS
   ========================================================================= */
.about-us{ padding: 90px 0; background-color: var(--ink); }

.client-section{ padding: 60px 0; background-color: var(--ink-soft); }
.client-section ul{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.client-section ul li{
  text-align: center;
  padding: 15px;
  align-items: center;
  width: 10%;
}
.client-section ul li img{
  filter: grayscale(1) brightness(2) opacity(0.6);
  transition: all var(--speed) var(--ease);
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 10px;
}
.client-section ul li img:hover{
  filter: none;
  border-color: var(--accent);
}

/* =========================================================================
   HIRING / CTA STRIP
   ========================================================================= */
.hiring-section{
  background: linear-gradient(115deg, var(--grad-deep) 0%, var(--grad-mid) 60%, var(--grad-bright) 130%);
  overflow: hidden;
  position: relative;
}
.hiring-section .hiring-content{ padding: 60px 0 46px 0; }
.hiring-section .hiring-content h2{
  color: var(--white);
  margin-top: 0;
  line-height: 1.25;
}
.hiring-section .hiring-content p{
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.hiring-section .hiring-content ul{
  list-style: none;
  margin: 0;
  padding: 26px 0 0 0;
}
.hiring-section .hiring-content ul li{
  width: 30%;
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  padding-left: 14px;
}
.hiring-section .hiring-content ul li a{
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 0 0 2px 0;
}
.hiring-section .hiring-content ul li a:hover{
  border-color: var(--amber);
  color: var(--amber);
}
.hiring-section .hiring-content ul li::after{
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--amber);
  content: "";
}
.hiring-section .hiring-content .hire-banner{
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.service-section .service-box.first-box{
  display: flex;
  align-content: center;
  align-items: center;
  background: linear-gradient(120deg, var(--grad-mid) 0%, var(--grad-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.service-section .service-box{
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
}
.service-section .service-box .service-box-img{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-section .service-box.first-box .service-box-img{ width: 45%; }
.service-section .service-box .service-box-img img{
  position: relative;
  z-index: 1;
  height: auto;
  width: 100%;
  transition: transform 0.6s var(--ease);
}
.service-section .service-box:hover .service-box-img img{
  transform: scale(1.04);
}
.service-section .service-box .service-box-img ul{
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.service-section .service-box .service-box-img ul li{
  position: relative;
  font-size: 16px;
  padding: 5px 15px;
}
.service-section .service-box:hover .service-box-img ul{ opacity: 1; }
.service-section .service-box .service-box-img ul li a{ color: var(--white); }
.service-section .service-box .service-box-img ul li:after{
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--amber);
  content: "";
}
.service-section .service-box:hover .service-box-img::after{ opacity: 1; }
.service-section .service-box.first-box .service-box-content{
  padding: 0 32px;
  width: 55%;
}
.service-section .service-box.first-box .service-box-content h3{
  color: var(--white);
  margin-top: 20px;
}
.service-section .service-box.first-box .service-box-content p{
  color: rgba(255,255,255,0.78);
}
.service-section .service-box.first-box .service-box-img img{
  height: 450px;
  object-fit: cover;
}
.service-section .service-box .service-box-height{ min-height: 144px; }
.service-section .service-box .service-box-height h3{
  margin: 15px 0;
  font-size: 20px;
}
.service-section .service-box .service-box-img::after{
  background: linear-gradient(180deg, rgba(10,14,26,0.1) 0%, rgba(10,14,26,0.94) 100%);
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.service-box-content p{ line-height: 22px; }

/* =========================================================================
   PORTFOLIO
   ========================================================================= */
.portfolio-section{
  background-color: var(--ink-soft);
  padding: 90px 0;
}
.portfolio-section .top-text{ padding: 0 0 60px 0; margin: 0; }
.portfolio-section .top-text h2{
  font-size: 40px;
  line-height: 1.2;
  color: var(--white);
  padding: 0 0 10px 0;
  margin: 0;
}
.portfolio-section .top-text p{ color: var(--text-muted); padding: 0; margin: 0; }
.portfolio-section .box{ position: relative; padding: 0; margin: 0; }
.portfolio-section .box img{
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}
.portfolio-section .box .project-text{
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  bottom: 35px;
  left: 0;
  width: 90%;
  right: 0;
  padding: 18px 0 26px 0;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.portfolio-section .box .project-text h3{
  padding: 0 0 15px 0;
  margin: 0;
  color: var(--text);
  font-size: 20px;
}
.portfolio-section .box .project-text ul li{
  display: inline-block;
  padding: 0;
  margin: 0;
}
.portfolio-section .box .project-text ul li .btn{
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-pill);
  font-size: 14px;
  line-height: 17px;
  color: var(--white);
  padding: 5px 16px;
  margin: 0;
  transition: all var(--speed) var(--ease);
}
.portfolio-section .box .project-text ul li .btn:hover{
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.common-heading{
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.common-heading > span{
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px 0;
  display: block;
  line-height: 26px;
}
.common-heading h2{
  margin-bottom: 55px;
  font-size: 38px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}
.video-review a{ position: relative; display: inline-block; }
.video-review{ border-radius: var(--radius-lg); overflow: hidden; }

.review-icons a{ display: inline-block; padding: 0 20px; }
.review-ref{
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.mt100{ margin-top: 100px; }
.owl-carousel .owl-dots .owl-dot{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  vertical-align: middle;
}
.testinomial-section .owl-carousel .owl-dots{
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  background: transparent;
  width: 100px;
  margin: 0;
  height: 50px;
  padding: 25px 0 0 0;
}
.owl-carousel .user-image img{
  border-radius: 100%;
  width: 80px;
  border: 2px solid var(--line);
}
.owl-carousel .owl-dots .owl-dot:before{
  top: 2px; right: 2px; bottom: 2px; left: 2px;
  opacity: 0;
  background: 0 0;
  border: 1px solid var(--accent);
}
.owl-carousel .owl-dots .owl-dot:after,
.owl-carousel .owl-dots .owl-dot:before{
  content: '';
  position: absolute;
  border-radius: 50%;
  transition: ease-out 0.16s;
}
.owl-carousel .owl-dots .owl-dot.active:before{ top: 0; right: 0; bottom: 0; left: 0; }
.owl-carousel .owl-dots .owl-dot:after{
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.4;
  background: var(--accent-2);
  width: 4px; height: 4px;
}
.owl-carousel .owl-dots .owl-dot.active:after,
.owl-carousel .owl-dots .owl-dot.active:before{ opacity: 1; }
.owl-carousel .owl-dots .owl-dot.active:after,
.owl-carousel .owl-dots .owl-dot:focus:after,
.owl-carousel .owl-dots .owl-dot:hover:after{ opacity: 1; }

.user-info{ margin: 0 0 0 20px; text-align: left; }
.media{ display: flex; align-items: flex-start; }
.user-info p{ font-size: 15px; line-height: 22px; color: var(--text-dim); }

.review-vid-details p{ font-weight: 700; color: var(--white); font-size: 18px; }
.-vid-ico{
  min-width: 40px; min-height: 40px;
  display: inline-flex;
  background: var(--white);
  border-radius: 1000px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  outline: 0;
  position: relative;
  padding: 10px;
  align-items: center;
}
.testinomial-section{ background: var(--ink-soft); }

.triangle-play2{
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-left: 12px solid var(--accent);
  border-bottom: 7px solid transparent;
  text-align: center;
  margin: 0 auto;
}
.review-vid-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  position: absolute;
  bottom: 0;
  z-index: 10;
}
.testimonial-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.testimonial-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card .t-text p{
  font-size: 16px;
  line-height: 28px;
  color: var(--text-muted);
}
.mt30{ margin-top: 30px; }
.dg-bg--2{ background-color: var(--ink); }
.testimonial-card .t-text{ padding: 0 10px; }

.why-choose-list img{ width: 50px; display: block; }

/* =========================================================================
   CALL TO ACTION
   ========================================================================= */
.call-to-action{
  width: 100%;
  padding: 55px 0;
  background: linear-gradient(120deg, var(--grad-deep) 0%, var(--grad-mid) 100%);
}
.call-left-box h3{
  color: var(--white);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}
.call-left-box p{ color: rgba(255,255,255,0.75); font-size: 16px; }
.btn_call-to-action{
  display: inline-block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  background: var(--amber);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  margin-top: 0;
  transition: all var(--speed) var(--ease);
}
.btn_call-to-action:hover{
  background: var(--amber-2);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(242,169,59,0.3);
  transform: translateY(-2px);
}

/* =========================================================================
   BLOG
   ========================================================================= */
.section-sub-title{
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: -5px;
}
.section-space--mb_60{ margin-bottom: 60px; }
.section-space--ptb_100{ padding-top: 100px; padding-bottom: 100px; }
.single-blog-lg-item > a{ display: block; }
.post-blog-thumbnail{ position: relative; display: block; }
.post-blog-thumbnail::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.6;
  background-image: linear-gradient(-180deg, rgba(10,14,26,0) 11%, #05070F 85%);
  border-radius: var(--radius-md);
}
.post-blog-thumbnail > img{ border-radius: var(--radius-md); width: 100%; }
.post-blog-thumbnail .post-meta{
  position: absolute;
  bottom: 18px;
  left: 30px;
  right: 30px;
  color: var(--white);
  font-size: 13px;
  margin: 0 -8px;
}
.post-blog-thumbnail .post-meta div{ display: inline-block; padding: 0 8px; }
.post-blog-thumbnail .post-meta .post-author img{
  width: 30px;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 50%;
}
.post-blog-thumbnail .post-meta div{ display: inline-block; padding: 0 3px; }
.single-blog-lg-list .post-blog-thumbnail{
  position: relative;
  flex-shrink: 0;
  margin-right: 28px;
  width: 200px;
}
.single-blog-lg-list{
  display: flex;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 22px 0 22px 30px;
}
.single-blog-lg-list:first-child{ border-top: none; padding: 0 0 22px 30px; }

.post-title a{
  color: var(--text);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.35;
  font-size: 20px;
}
.single-blog-lg-item h4{ line-height: 1.3 !important; }
.single-blog-lg-item .post-title a{
  color: var(--text);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
}
.mt-15{ margin-top: 15px; }
.single-blog-lg-item .btn-text a{
  display: inline-block;
  border-bottom: 1px solid var(--line);
  color: var(--accent-2);
}
.single-blog-lg-item .post-title a:hover,
.post-title a:hover{
  text-decoration: none;
  color: var(--accent-2);
}
.heading{
  color: var(--text);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 38px;
}

/* =========================================================================
   FOOTER (main)
   ========================================================================= */
.main-footer{
  padding: 50px 0;
  background-color: #070B16;
  border-top: 1px solid var(--line-soft);
}
ul.f_menu li,
ul.certificate li,
.social_share li{
  display: inline-block;
  margin: 0 15px 0 0;
}
.f_menu li a,
.site_info li a,
.site_info p{
  font: 400 15px/26px var(--font-body);
  color: var(--text-muted);
  padding: 0 0 8px 0;
}
.f_menu li a:hover{ color: var(--accent-2); }
.certificate{ margin: 25px 0; }
.site_info h6{
  font: 600 16px/28px var(--font-display);
  color: var(--amber);
  margin: 5px 0 0 0;
}
.site_info strong{ margin: 0 10px 0 0; color: var(--text); }
.social_share{ margin: 15px 0 0 0; }
.social_share li i{
  font-size: 16px;
  color: var(--ink);
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--text-muted);
  transition: all var(--speed) var(--ease);
}
.social_share li a:hover i{
  background-color: var(--accent);
  color: var(--white);
}
.bottom-footer{
  padding: 18px 0;
  text-align: center;
  background-color: #05070F;
}
.bottom-footer p{
  font: 400 14px/20px var(--font-body);
  color: var(--text-dim);
}

/* inner banners */
.inner_banner h1{
  color: var(--white);
  position: relative;
  z-index: 1;
}
.inner_banner h2,
.inner_banner p,
.inner_banner img{
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* =========================================================================
   ABOUT US PAGE
   ========================================================================= */
.baner-overlay{ position: relative; }
.baner-overlay::after{
  content: '';
  background: linear-gradient(120deg, rgba(10,14,26,0.85), rgba(10,14,26,0.65));
  position: absolute;
  height: 100%; width: 100%;
  top: 0; left: 0;
  overflow: hidden;
}
.inner-about-us{
  background: linear-gradient(90deg, var(--grad-deep) 0%, var(--grad-mid) 100%);
}
.inner-about-us h2{ color: var(--white); margin-bottom: 15px; }
.inner-about-us p{ color: rgba(255,255,255,0.78); }
.inner-about-us ul{ list-style: none; }
.inner-about-us ul li{
  display: inline-block;
  padding: 20px 0;
  font-size: 15px;
  color: var(--white);
  margin-right: 20px;
}
.inner-about-us ul li a{ color: var(--white); }
.inner-about-us ul li a.banner-btn{
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  color: var(--white);
  transition: all var(--speed) var(--ease);
}
.inner-about-us ul li a.banner-btn:hover{
  background: var(--white);
  color: var(--ink);
}
.inner-about-us .hiring-left{ position: relative; }
.hiring-left::before{
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 35%;
  content: "";
  background: var(--accent);
}
.hiring-left h2{ color: var(--white); z-index: 99; position: relative; }
.hiring-left span{
  position: relative;
  font-size: 18px;
  color: var(--white);
  display: block;
  margin-top: 15px;
}

.bg-hiring{ background: var(--panel); }
.resource-hiring .hiring-content h2,
.resource-hiring .hiring-content p{ color: var(--text); }
.resource-hiring .hiring-content ul li{
  width: 48%;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
  padding-left: 14px;
}
.resource-hiring .hiring-content ul li a{
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: none;
}
.resource-hiring .hiring-content{ padding-left: 50px; }
.resource-hiring .hiring-content ul li::after{
  position: absolute;
  top: 10px; left: 0;
  width: 6px; height: 6px;
  border-radius: 100%;
  background-color: var(--accent);
  content: "";
}

.story-list{ list-style: none; margin: 25px 0 0 0; padding: 0; }
.story-list li{
  display: inline-block;
  text-align: center;
  padding: 0 15px;
  width: auto;
}
.story-list li .round-s{
  background: var(--accent);
  width: 75px; height: 75px;
  line-height: 75px;
  border-radius: 100px;
  box-shadow: var(--shadow-accent);
}
.story-list li .round-s i{ font-size: 28px; color: var(--white); }
.company-story{ background: var(--ink-soft); }
.about-services-list{ padding: 15px 0; }
.about-services-list li{ display: inline-block; width: 19%; }
.about-services-list .about-block i{ font-size: 28px; color: var(--accent-2); }
.about-services-list .about-block span{
  font-size: 17px;
  color: var(--text);
  margin-left: 10px;
  line-height: 22px;
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-form form{
  background-color: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  text-align: left;
  padding: 28px 24px;
}
.contact-form label{ display: none; }
.contact-form input,
.contact-form textarea{
  padding-left: 35px;
  border-radius: var(--radius-sm);
  color: var(--text);
  background-color: var(--panel-2);
  border: 1px solid var(--line);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: var(--text-dim); }
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: var(--accent);
  background-color: var(--panel-2);
  color: var(--text);
}
.contact-form .btn-default{
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 12px 36px;
  background-color: var(--accent);
  border-radius: var(--radius-pill);
  border: 0;
  color: var(--white);
  font-weight: 600;
}
.contact-form .btn-default:hover,
.contact-form .btn-default:focus{
  background-color: var(--accent-2);
  color: var(--ink);
  border-color: transparent;
  outline: 0;
}
.contact-form .icon{
  position: relative;
  float: left;
  margin-left: 8px;
  margin-top: -28px;
  z-index: 2;
  color: var(--text-dim);
}
.contact-form .icon-textarea{
  float: left;
  margin-left: 8px;
  margin-top: -125px;
  position: relative;
  z-index: 2;
  color: var(--text-dim);
}
.contact-form .form-group{ margin-bottom: 15px; }
.contact-form .contact-form{ color: var(--accent-2); }
.contact-address{ padding-left: 30px; }
.address-block{ display: inline-block; width: 100%; padding-bottom: 45px; }
.address-block img{
  float: left;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.address-block .address-inner{ padding-left: 25px; overflow: hidden; }
.address-block .address-inner h3{
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--text);
}
.address-block .address-inner p{
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 10px;
}

.inner_banner ul li{
  display: inline-block;
  padding: 20px 0;
  font-size: 15px;
  color: var(--white);
  margin-right: 20px;
  position: relative;
  z-index: 1;
}
.inner_banner ul li a.banner-btn{
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  color: var(--white);
}
.inner_banner ul li a{ color: var(--white); }

/* =========================================================================
   SERVICE LIST / SINGLE SERVICE
   ========================================================================= */
.ser-list{ list-style: none; width: 100%; }
.ser-list li{
  display: inline-block;
  width: 30%;
  position: relative;
}
.ser-list li::after{
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  top: 14px; left: 0;
}
.ser-list li a{
  color: var(--text);
  font-size: 15px;
  padding: 5px 0;
  margin-left: 18px;
}
.ser-img{
  background: linear-gradient(120deg, var(--grad-bright), var(--grad-deep));
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 80px 40px;
  border-radius: var(--radius-lg);
}

.service-sec .service-row{
  padding: 45px 55px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}
.ser-content h2{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.ser-content p{ font-size: 16px; line-height: 26px; margin-bottom: 20px; }

.why-chose-box span{
  width: 68px; height: 68px;
  border: 2px solid var(--accent);
  border-radius: 50px;
  display: block;
  text-align: center;
  line-height: 68px;
  font-size: 32px;
  color: var(--accent-2);
  transition: all 0.4s var(--ease);
  float: left;
  background-color: var(--panel);
}
.why-chose-box:hover span{
  background-color: var(--accent);
  color: var(--white);
}
.why-chose-box .why-cose-content{ overflow: hidden; padding-left: 18px; }
.why-chose-box .why-cose-content h3{ font-size: 19px; color: var(--text); }
.why-chose-box{ margin-bottom: 28px; }
.why-choose-service h2{ margin-bottom: 30px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq .faq-list{ padding: 0 100px; }
.faq .faq-list ul{ padding: 0; list-style: none; display: block; }
.faq .faq-list li + li{ margin-top: 15px; }
.faq .faq-list li{
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
}
.faq .faq-list a{
  display: block;
  position: relative;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: var(--text);
}
.faq .faq-list .icon-help{
  font-size: 22px;
  position: absolute;
  right: 0; left: 20px;
  color: var(--accent-2);
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close{
  font-size: 22px;
  position: absolute;
  right: 0; top: 0;
  color: var(--accent-2);
}
.faq .faq-list p{ margin-bottom: 0; padding: 10px 0 0 0; color: var(--text-muted); }
.faq .faq-list .icon-show{ display: none; }
.faq .faq-list a.collapsed{ color: var(--text); transition: 0.3s; }
.faq .faq-list a.collapsed:hover{ color: var(--accent-2); }
.faq .faq-list a.collapsed .icon-show{ display: inline-block; }
.faq .faq-list a.collapsed .icon-close{ display: none; }

@media (max-width: 1200px){
  .faq .faq-list{ padding: 0; }
}

.section-bg{
  background-color: var(--ink-soft);
  padding: 90px 0;
}

.light-bg{ background: var(--ink-soft); }
.single-ser-title h4{
  font-size: 19px;
  font-weight: 600;
  color: var(--accent-2);
}
.single-ser-title h4 span{
  margin-right: 6px;
  font-size: 36px;
  vertical-align: middle;
}
.single-ser-sec{
  padding: 20px 18px;
  margin-bottom: 25px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.single-ser-sec:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.single-ser-sec .btn-read{
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  font-weight: 600;
  line-height: 16px;
  font-size: 13px;
  text-decoration: none;
}
.single-ser-sec p{ font-size: 16px; line-height: 26px; font-weight: 400; }

.banner-form-inner .form-group{ position: relative; margin: 20px auto; }
.banner-form .banner-form-inner{
  padding: 20px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  text-align: left;
  max-width: 350px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 25px;
}
.banner-form .banner-form-inner h2{
  font-size: 22px;
  color: var(--text);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.banner-form .banner-form-inner p{
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

.portfolio-page .portfolio-section{ background: transparent !important; }

.individual-group{
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.individual-group li{ display: inline; margin-right: 20px; }
.single-services-page .btn-individual,
.single-solutions-page .btn-individual{
  padding: 0 44px;
  height: 46px;
  line-height: 44px;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--accent);
  display: inline-block;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}
.single-services-page .btn-individual.fill,
.single-solutions-page .btn-individual.fill{
  background-color: var(--accent);
  color: var(--white);
}
.single-services-page .btn-individual:hover,
.single-solutions-page .btn-individual:hover{
  background-color: var(--accent);
  color: var(--white);
}
.single-services-page ul,
.single-solutions-page ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.single-services-page ul li,
.single-solutions-page ul li{ margin-right: 15px; margin-top: 20px; }

.technology-section ul{
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.technology-section ul li{
  text-align: center;
  padding: 10px;
  align-items: center;
  width: 11%;
}
.technology-section ul li img{
  transition: all var(--speed) var(--ease);
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 8px;
}
.technology-section ul li img:hover{ border-color: var(--accent); }

.industry-box{ display: flex; align-items: center; margin-bottom: 30px; }
.industry-box p{ font-size: 17px; margin-left: 10px; line-height: 22px; color: var(--text); }
.industry-serve img{ max-width: 32%; height: auto; }

.why-choose h2, .why-choose p{ margin-bottom: 10px; }
.why-choose-list strong{
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 10px 0;
  display: block;
  color: var(--text);
}

/* =========================================================================
   SECTION HEADER / PROCESS STEPS (genuine sequence — numbering kept)
   ========================================================================= */
.section-header{
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}
.section-header::before{
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  bottom: 0;
  left: calc(50% - 25px);
}
.section-header h2{
  font-size: 34px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.section-header p{
  text-align: center;
  padding: 0; margin: 0;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
}

.work-porcess-area{ background: var(--ink-soft); }
.work-porcess-area.white{ background: var(--ink); }
.work-porcess-area .process-info{ margin-top: 7px; }
.work-porcess-area .process-info .single-process{
  width: 150px; height: 150px;
  border-radius: 50%;
  padding-top: 50px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.work-porcess-area .process-info .single-process:hover{
  box-shadow: var(--shadow-accent);
  transform: translateY(-4px);
}
.work-porcess-area .process-info .single-process:after{
  position: absolute;
  content: "\f101";
  font-family: "fontawesome";
  top: 50%;
  transform: translateY(-50%);
  right: -65px;
  color: var(--accent);
}
.work-porcess-area .process-info .single-process.first{ background: var(--accent); border-color: var(--accent); }
.work-porcess-area .process-info .single-process.first i:before{ color: var(--white); }
.work-porcess-area .process-info .single-process.first h4{ color: var(--white); }
.work-porcess-area .process-info .single-process.thard{ background: var(--accent); border-color: var(--accent); }
.work-porcess-area .process-info .single-process.thard i:before{ color: var(--white); }
.work-porcess-area .process-info .single-process.thard h4{ color: var(--white); }
.work-porcess-area .process-info .single-process.last:after{ display: none; }
.work-porcess-area .process-info .single-process i{
  display: block;
  line-height: 25px;
  margin-bottom: 12px;
}
.work-porcess-area .process-info .single-process i:before{ font-size: 34px; color: var(--accent-2); }
.work-porcess-area .process-info .single-process h4{
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--accent-2);
}

@media only screen and (max-width: 767px){
  .work-porcess-area .process-info .single-process::after{ display: none; }
  .work-porcess-area .process-info .single-process{ margin-top: 30px; }
  .work-porcess-area .section-title h2{ margin-bottom: 5px; }
  .section-header h2{ font-size: 28px; }
}

.single-tech-sec{ display: flex; }
.single-tech-sec span i{
  font-size: 44px;
  line-height: 56px;
  text-align: center;
  border-radius: 100%;
  width: 56px; height: 56px;
  border: 1px solid var(--line);
  color: var(--accent-2);
}
.single-tech-box{ margin-left: 12px; }

/* =========================================================================
   PROCESS STEP TABS
   ========================================================================= */
.process-step .btn:focus{ outline: none; }
.process{ display: table; width: 100%; position: relative; }
.process-row{ display: table-row; }
.process-step button[disabled]{ opacity: 1 !important; }
.process-step{ display: table-cell; text-align: left; position: relative; }
.btn-default{
  background: var(--accent);
  color: var(--white);
  width: 100%;
  border-radius: var(--radius-sm);
}
.btn-info{
  color: var(--ink);
  background-color: var(--amber);
  border-color: var(--amber);
  width: 100%;
  border-radius: var(--radius-sm);
}
.process-step p{ margin-top: 4px; color: var(--white); }
.process-step .btn::after{
  position: absolute;
  content: "";
  top: -2px; left: -1px;
  width: 0; height: 0;
  border-top: 24px solid transparent;
  border-left: 20px solid var(--ink-soft);
  border-bottom: 24px solid transparent;
  z-index: 3;
}
.process-step .btn::before{
  position: absolute;
  content: "";
  top: 0; left: 100%;
  width: 0; height: 0;
  border-top: 22px solid transparent;
  border-left: 17px solid var(--panel);
  border-bottom: 22px solid transparent;
  z-index: 4;
}

.service-features-inner{ text-align: center; }
.service-features-inner h3{
  font-size: 17px;
  color: var(--text);
  margin-top: 15px;
  font-weight: 600;
}

.hire-technology-inner{
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 20px;
  overflow: hidden;
  background: var(--panel);
}
.hire-technology-inner h3{
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  padding: 14px;
  background: var(--accent);
}
.hire-technology-inner ul li{
  padding: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-muted);
}
.hire-technology-inner ul li span{ font-weight: 600; color: var(--accent-2); }
.hire-technology-inner ul li:last-child{ border-bottom: transparent; }

.inner-service-box{
  padding: 22px 18px;
  border: 1px solid var(--line);
  margin-top: 20px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.inner-service-box:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.inner-service-box h3{ font-size: 17px; font-weight: 600; color: var(--accent-2); }
.inner-service-box .inner-service-list{ display: block; list-style: inside; }
.inner-service-box h3 span{ font-size: 28px; vertical-align: middle; margin-right: 10px; }
.inner-service-box .inner-service-list li{ padding: 7px; font-size: 15px; margin-top: 0; color: var(--text-muted); }

/* =========================================================================
   BLOG PAGE
   ========================================================================= */
.blog-banner{ background: linear-gradient(90deg, var(--grad-deep) 0%, var(--grad-mid) 100%); }
.insight-sec{ display: flex; align-items: center; }
.insight-sec span{
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-right: 30px;
}
.insight-sec .breadcrumb{ margin-bottom: 0; color: var(--text-muted); }
.insight-sec .breadcrumb li a{ color: var(--text-muted); }
.insight-sec .breadcrumb li{ margin: 0 15px; font-size: 15px; color: var(--text-muted); }
.form-control:focus{ box-shadow: none; border-color: var(--accent); }

.header-form .input-group > .form-control{
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border-radius: var(--radius-pill);
}

.blog-box .media figure img{ height: auto !important; display: block; border-radius: var(--radius-md); }
.media-containt{ flex: 1; }
.blog-box .media figure{ margin: 0 20px 0 0; max-width: 360px; }
.media-containt strong{ font-size: 17px; font-weight: 500; color: var(--accent-2); }
.media-containt h2{
  text-transform: capitalize;
  color: var(--text);
  margin-top: 10px;
  font-size: 26px;
}
.media-containt p{ font-size: 16px; line-height: 1.6; margin: 10px 0; }
.media-containt ul{ display: flex; }
.media-containt ul li{ margin-right: 15px; color: var(--text-dim); font-size: 14px; }
.media-containt ul li span{ color: var(--accent-2); margin-right: 5px; }
.inner-blog-sec{
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}
.blog-box{ border-bottom: 1px solid var(--line); padding: 20px 0; }
.blog-box:last-child{ border-bottom: transparent; }

.blog-category-box ul{ display: flex; flex-wrap: wrap; }
.blog-category-box ul li{ margin: 25px auto 0; width: 50%; text-align: center; }
.blog-category-box{
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}
.prize-box{
  border: 1px solid var(--line);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}
.blog-category-box h5{ font-size: 17px; margin-top: 15px; color: var(--text); }

/* =========================================================================
   CAREERS
   ========================================================================= */
.career-banner h1{ font-size: 42px; }

.career .faq-list{ padding: 0; }
.career .faq-list ul{ padding: 0; list-style: none; display: block; }
.career .faq-list li + li{ margin-top: 15px; }
.career .faq-list li{
  padding: 8px 25px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
}
.career .faq-list a{
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-display);
}
.career .faq-list .icon-help{
  font-size: 22px;
  position: absolute;
  right: 0; left: 20px;
  color: var(--accent-2);
}
.career .faq-list .icon-show,
.career .faq-list .icon-close{
  font-size: 22px;
  position: absolute;
  right: 0; top: 0;
  color: var(--accent-2);
}
.career .faq-list p{
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.career .faq-list .icon-show{ display: none; }
.career .faq-list a.collapsed{ color: var(--text); transition: 0.3s; }
.career .faq-list a.collapsed:hover{ color: var(--accent-2); }
.career .faq-list a.collapsed .icon-show{ display: inline-block; }
.career .faq-list a.collapsed .icon-close{ display: none; }

@media (max-width: 1200px){
  .career .faq-list{ padding: 0; }
}

.career .responsibilities li{
  padding: 10px 0;
  list-style: decimal;
  color: var(--text-muted);
}
.career .responsibilities li + li{ margin-top: 0; }
.career ul.responsibilities{ padding: 0 20px; }

.career-page h1{
  font-size: 46px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.career-page .banner-btn{
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* =========================================================================
   PORTFOLIO GRID TILES
   ========================================================================= */
.container .box,
.container .add_box{
  position: relative;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  margin-bottom: 7%;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  border: 1px solid var(--line);
}
.container .box:hover,
.container .add_box:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.container .box img,
.container .add_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.container .box .box__title,
.container .add_box .box__title{
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background-color: var(--accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  vertical-align: baseline;
  transition: 0.5s ease-out;
}
.container .box .box__title p,
.container .add_box .box__title p{
  opacity: 0;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.8em;
  margin: 0;
  transition: 0.2s ease-out;
  transition-delay: 0.2s;
}
.container .box .box__title h6,
.container .add_box .box__title h6{
  text-align: center;
  color: var(--white);
  text-transform: capitalize;
  font-size: 15px;
  padding: 10px 0;
}
.container .add_box{ background-color: var(--panel); }
.container .add_box a{ position: absolute; width: 100%; height: 100%; }
.container .add_box svg{
  display: block;
  margin: auto;
  margin-top: 23.5%;
  transition: 0.3s ease-out;
}
.container .add_box .add_box__title{
  position: absolute;
  width: 100%;
  text-align: center;
  color: var(--text-dim);
  top: 60%;
}
.container .add_box .add_box__title h6{ text-transform: uppercase; }
.container .add_box a:hover svg{ margin-top: 21.5%; }

/* =========================================================================
   FOOTER (extended variant)
   ========================================================================= */
.footer-area{
  padding-top: 70px;
  background-color: #05070F;
}
.footer-top-area{
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 70px;
}
.footer-top-info > p{
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
}
.footer-menu{ float: right; }
.footer-widget.address h5{ padding-bottom: 8px; }
.footer-payment{ display: inline-block; margin-top: 12px; }
.footer-top-info > p > span{ color: var(--text); font-weight: 700; }
.footer-middle-area{ padding-bottom: 60px; }
.footer-widget h5{
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--font-display);
}
.footer-address{ margin-bottom: 15px; }
.footer-widget ul.social-icon li:hover a{ margin-left: inherit; }
.footer-bottom-area{
  background: #03050C;
  padding-top: 20px;
  padding-bottom: 8px;
}
.copyright > p{
  color: var(--text-dim);
  font-size: 14px;
  font-style: italic;
  font-family: var(--font-body);
}
.copyright > p > a{ color: var(--accent-2); }
.copyright > p > a:hover{ text-decoration: underline; }
.footer-logo{ margin-bottom: 15px; }
.footer-address > p,
.footer-widget > ul > li > a{
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  transition: all var(--speed) var(--ease);
}
.footer-widget > ul > li > a{ line-height: 30px; font-style: normal; }
.footer-widget > ul > li:hover > a{
  color: var(--accent-2);
  margin-left: 5px;
}
.footer-widget > ul > li > a > i,
.footer-address p i{ margin-right: 8px; }
.footer-address p i,
.footer-menu ul li:hover a{ color: var(--accent-2); }
.footer-menu ul{ margin: 0; padding: 0; list-style: none; }
.footer-menu ul li{
  display: inline-block;
  margin-right: 20px;
  transition: all var(--speed) var(--ease);
}
.footer-menu ul li:last-child{ margin-right: 0; }
.footer-menu ul li a{
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.footer-middle-area ul{
  list-style: outside;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
}

/* =========================================================================
   SCROLL UP
   ========================================================================= */
#scrollUp{
  background: var(--accent);
  bottom: 100px;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  position: fixed;
  right: 50px;
  text-align: center;
  transition: all 0.25s var(--ease);
  width: 42px;
  z-index: 9999;
  box-shadow: var(--shadow-md);
}
#scrollUp:hover{
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-3px);
}

/* =========================================================================
   PAYMENT FORM
   ========================================================================= */
.pay-from{
  position: relative;
  background: linear-gradient(120deg, var(--grad-deep) 0%, var(--grad-mid) 55%, var(--grad-bright) 130%);
  border: 1px solid var(--line);
  width: 500px;
  max-width: 100%;
  padding: 40px 40px 55px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.pay-from::before{ content: none; }

.pay-from .form-control{ margin-top: 0; text-align: left; }
.pay-from label{
  display: block;
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 0;
  text-align: left;
  margin-left: 10px;
}
.pay-from input{
  position: relative;
  width: 100%;
  height: 48px;
  border: none;
  outline: none;
  padding: 5px 15px;
  background: var(--panel-2);
  color: var(--text);
  font-size: 16px;
  border-radius: var(--radius-sm);
}
.pay-from select{
  height: 48px;
  margin-top: 0;
  background: var(--panel-2);
  color: var(--text);
  border-radius: var(--radius-sm);
}
.pay-from .tm-get-in-touch-btn{
  color: var(--white);
  background: var(--accent);
  margin-top: 20px;
  letter-spacing: 0.03em;
  font-size: 16px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--speed) var(--ease);
}
.pay-from .tm-get-in-touch-btn:hover{
  background: var(--accent-2);
  color: var(--ink);
}
.pay-from h2{
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  font-size: 22px;
}
.contact-page-section .pay-from input{ color: var(--text); }

/* =========================================================================
   MODAL / GET-IN-TOUCH POPUP
   ========================================================================= */
.win_center_popup{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 0;
}
.win_center_popup .modal-header{ padding: 0 0 10px 0; border-bottom: 1px solid var(--line); }
.win_center_popup .modal-header h5{ font-size: 21px; color: var(--text); }
.win_center_popup .modal-content{
  padding: 18px 22px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.win_center_popup .modal-body{ padding: 20px 0 0 0; }
.get_box .input_1{
  font-size: 15px;
  color: var(--text);
  line-height: 20px;
  padding: 10px;
  margin: 0 0 18px 0;
  width: 100%;
  height: 46px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  outline: none;
}
.get_box .input_1::placeholder{ color: var(--text-dim); }
.get_box .input_1:focus{ border-color: var(--accent); }
.get_box .message1{ height: 100px; }
.btn_send{
  color: var(--white);
  background: var(--accent);
  padding: 13px 40px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.04em;
  margin: 0;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
}
.btn_send:hover{
  background: var(--accent-2);
  color: var(--ink);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}