* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   letter-spacing: -1px;
}

body {
   font-family: 'Inter', sans-serif;
   font-size: 16px;
}

p {
   font-size: 17px;
   line-height: 1.6;
   color: #1f2c38;
   margin-bottom: 15px;
}

strong {
   font-weight: 600;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
   background: #ffffff;
   padding: 5px 0;
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 999;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
   width: 100px;
}

.navbar-nav {
   gap: 35px;
}

.nav-link {
   color: #222;
   font-size: 15px;
   font-weight: 500;
   transition: 0.3s;
}

.nav-link:hover {
   color: #df1b2c;
}

.btn-touch {
   background: #df1b2c;
   color: #fff;
   padding: 10px 50px;
   border-radius: 50px;
   font-size: 16px;
   font-weight: 500;
   transition: 0.3s;
}

.btn-touch:hover {
   background: #dc3545;
   color: #fff;
}


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

.hero-section {
   position: relative;
   width: 100%;
   min-height: 95vh;
   padding-top: 100px;
   background: url('../img/2l.png') center center/cover no-repeat;

   display: flex;
   align-items: center;
}

.overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.65);
}

.hero-content {
   position: relative;
   z-index: 2;
   color: #fff;
}

.small-text {
   font-size: 14px;
   font-weight: 500;
   margin-bottom: 15px;
   line-height: 1.5;
   text-transform: uppercase;
   letter-spacing: 4px;
}

.hero-content h1 {
   font-size: 52px;
   font-weight: 600;
   line-height: 1.1;
   margin-bottom: 15px;
}

.hero-content p {
   font-size: 18px;
   line-height: 1.5;
   color: #ddd;
   max-width: 700px;
   margin-bottom: 40px;
}

.hero-buttons {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
}

.btn-primary-custom {
   background: #df1b2c;
   color: #fff;
   padding: 10px 50px;
   border-radius: 50px;
   font-size: 16px;
   font-weight: 500;
   transition: 0.3s;
}

.btn-primary-custom:hover {
   background: #ca1328;
   color: #fff;
}

.btn-secondary-custom {
   background: #fff;
   color: #111;
   padding: 10px 50px;
   border-radius: 50px;
   font-size: 16px;
   font-weight: 500;
   transition: 0.3s;
}

.btn-secondary-custom:hover {
   background: #e7e7e7;
   color: #111;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

   .hero-content h1 {
      font-size: 48px;
   }

   .hero-content p {
      font-size: 18px;
   }

   .navbar-nav {
      padding: 10px 0;
      gap: 2px;
   }

}

@media(max-width:768px) {

   .hero-content h1 {
      font-size: 28px;
   }

   .small-text {
      font-size: 13px;
      letter-spacing: 3px;
   }

   .hero-content p {
      font-size: 16px;
      line-height: 1.6;
   }

   .hero-buttons {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
   }

   .btn-primary-custom,
   .btn-secondary-custom {
      width: 100%;
      text-align: center;
   }

}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
   background: #f4f4f4;
   padding: 100px 0;
}

.about-heading {
   max-width: 1100px;
   margin: 0 auto 70px;
}

.about-heading h2 {
   font-size: 40px;
   line-height: 1.4;
   font-weight: 300;
   color: #111;
}

.about-box {
   background: #e8eff1;
   border-radius: 30px;
   padding: 70px;
}

.about-image {
   position: relative;
   overflow: hidden;
   border-radius: 24px;
}

.about-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 24px;
   transition: 0.4s;
}

.about-image:hover img {
   transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

   .about-heading h2 {
      font-size: 25px;
   }

   .about-box {
      padding: 40px;
   }

   .about-image {
      margin-top: 40px;
   }

}

/* =========================
   WHAT WE DO
========================= */

.what-we-do {
   position: relative;
   padding: 100px 0;
   background: linear-gradient(90deg, #033c83, #173845);
   overflow: hidden;
}

/* Background Circle Effect */

.what-we-do::before {
   content: "";
   position: absolute;
   width: 700px;
   height: 700px;
   border-radius: 50%;
   border: 90px solid rgba(255, 255, 255, 0.03);
   top: -150px;
   right: 150px;
}

.section-title {
   margin-bottom: 35px;
}

.what-we-do .section-title h2 {
   color: #fff;
}

.section-title h2 {
   font-size: 50px;
   letter-spacing: -1.5px;
    margin:0;
    font-weight:700;
}

/* =========================
   CARD
========================= */

.service-card {
   position: relative;
   overflow: hidden;
   border-radius: 20px;
   height: 450px;
   cursor: pointer;
}

.service-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.6s ease;
}

/* Dark Overlay */

.service-card .overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top,
         rgba(0, 0, 0, 0.95),
         rgba(0, 0, 0, 0.2));
   transition: 0.5s;
}

/* Content */

.card-content {
   position: absolute;
   bottom: -135px;
   left: 35px;
   right: 35px;
   z-index: 2;
   color: #fff;
   transition: 0.5s ease;
}

.card-content h3 {
   font-size: 28px;
   font-weight: 500;
   margin-bottom: 15px;
}

/* Hidden Content */

.card-content p,
.card-content a {
   opacity: 0;
   transform: translateY(30px);
   transition: 0.5s ease;
}

.card-content p {
   font-size: 17px;
   line-height: 1.8;
   color: rgba(255, 255, 255, 0.85);
   margin-bottom: 20px;
}

.card-content a {
   display: inline-block;
   padding: 10px 30px;
   background: #df1b2c;
   color: #fff;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 400;
}

/* Hover Effect */

.service-card:hover img {
   transform: scale(1.1);
}

.service-card:hover .overlay {
   background: linear-gradient(to top,
         rgba(0, 0, 0, 0.95),
         rgba(0, 0, 0, 0.55));
}

.service-card:hover .card-content {
   bottom: 55px;
}

.service-card:hover .card-content p,
.service-card:hover .card-content a {
   opacity: 1;
   transform: translateY(0);
}


/* =========================
   AI SECTION
========================= */

.ai-section {
   background: #f0f6f8;
   padding: 100px 0;
}

/* LEFT */

.ai-section .section-title h2 {
   font-size: 40px;
   letter-spacing: -2px;
}


/* RIGHT */

.highlight-text {
   font-size: 18px !important;
   font-weight: 600;
   color: #222;
}

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

.icon-box-wrapper {
   margin-top: 40px;
}

.icon-box {
   background: #fff;
   padding: 40px 30px;
   border-radius: 24px;
   text-align: center;
   height: 100%;
   transition: 0.4s;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.icon {
   width: 90px;
   height: 90px;
   margin: 0 auto 25px;
   background: #00408f;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.icon i {
   font-size: 38px;
   color: #fff;
}

.icon-box h4 {
   font-size: 22px;
   font-weight: 600;
   margin-bottom: 15px;
}

.icon-box p {
   line-height: 1.5;
   color: #555;
}

#hire .icon-box {
   height: 300px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   text-align: left;
}

#hire .icon-box h4 {
   margin-bottom: 0;
   font-size: 30px;
   font-weight: 500;
}

#hire .icon {
   background: transparent;
   color: #00408f !important;
   margin: 0;
   height: auto;
   justify-content: flex-start;
}

#hire .icon i {
   color: #00408f !important;
   font-size: 40px;
}

/* =========================
   INDUSTRY SECTION
========================= */

.industry-section {
   padding: 100px 0;
   position: relative;
   overflow: hidden;
}

/* DOT BACKGROUND */

.industry-section::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: radial-gradient(#d7d7d7 1px, transparent 1px);
   background-size: 32px 32px;
   opacity: 0.5;
}

/* CONTENT */

.industry-section .container {
   position: relative;
   z-index: 2;
}

/* =========================
   WRAPPER
========================= */

.industry-section .tab-content {
   position: relative;
   background: #eaf1f3;
   border-radius: 20px;
   padding: 30px;
}

/* IMAGE */
.tab-image img {
   width: 100%;
   height: 320px;
   object-fit: cover;
   border-radius: 20px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ITEM */
.tab-content h3 {
   font-weight: 600;
}

.tab-content-list {
   padding-top: 10px;
}

.tab-item {
   display: flex;
   gap: 5px;
   align-items: center;
   padding: 5px 0;
   cursor: pointer;
   transition: 0.4s;
   width: 50%;
   float: left;
}

.tab-item span {
   font-size: 17px;
   font-weight: 400;
   transition: 0.4s;
}

.tab-item i {
   font-size: 16px;
   color: #666;
   transition: 0.4s;
}

/* HOVER */

.tab-item:hover span {
   color: #df1b2c;
   transform: translateX(10px);
}

.tab-item:hover i {
   color: #df1b2c;
   transform: translateX(8px);
}

/* SECTION */
.executive-section {
   width: 100%;
   min-height: 100vh;
   background: #000;
}

/* LEFT SIDE */
.content-box {
   min-height: 600px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 60px;
   background-image: linear-gradient(226deg, #da1728 4%, #000000 102%);
}

.content-inner {
   max-width: 480px;
   color: #fff;
}

.content-inner h2 {
   font-size: 35px;
   font-weight: 500;
   margin-bottom: 30px;
   line-height: 1.1;
}

.content-inner p {
   color: #e3d8d8;
}

.custom-btn {
   display: inline-block;
   background: #fff;
   color: #000;
   text-decoration: none;
   padding: 12px 50px;
   border-radius: 50px;
   font-weight: 600;
   transition: 0.3s ease;
}

.custom-btn:hover {
   background: #ccc;
   color: #000;
}

/* RIGHT GRID */
.grid-wrapper {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
}

.grid-box {
   height: 300px;
   position: relative;
   overflow: hidden;
}

.dark-box {
   background: #1b1a1a;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 40px;
}

.dark-box h2 {
   font-size: 65px;
   font-weight: 700;
   margin-bottom: 5px;
}

.dark-box p {
   font-size: 15px;
   margin: 0;
   color: #ddd;
   text-transform: uppercase;
   letter-spacing: 5px;
}

.image-box img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.empty-box {
   background: #000;
}

.map-img.text-center {
   margin-top: -150px;
}


/* FOOTER */
.custom-footer {
   position: relative;
   overflow: hidden;
   padding: 80px 0 40px;
   background: linear-gradient(to right, #000c12, #172125);
}

/* Background Circle Effect */
.custom-footer::before {
   content: "";
   position: absolute;
   left: -200px;
   bottom: -180px;
   width: 700px;
   height: 700px;
   border-radius: 50%;
   border: 55px solid rgba(0, 153, 255, 0.04);
}


/* Content */
.custom-footer .container {
   position: relative;
   z-index: 2;
}

/* Heading */
.footer-box h4 {
   color: #fff;
   font-size: 22px;
   margin-bottom: 30px;
   font-weight: 500;
}

/* List */
.footer-box ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-box ul li {
   margin-bottom: 22px;
}

.footer-box ul li,
.footer-box ul li a {
   color: #adadad;
   text-decoration: none;
   font-size: 15px;
   line-height: 1.2;
   transition: 0.3s ease;
   display: block;
}

.footer-box ul li a:hover {
   color: #fff;
}

/* Bottom */
.footer-bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 30px;
   margin-top: 50px;
}

/* Social */
.social-area {
   display: flex;
   align-items: center;
   gap: 25px;
}

.social-area h3 {
   color: #ffffff;
   font-size: 20px;
   margin: 0;
   font-weight: 500;
   letter-spacing: 0;
}

.social-icons {
   display: flex;
   gap: 20px;
}

.social-icons a {
   color: #ccc;
   font-size: 30px;
   transition: 0.3s ease;
}

.social-icons a:hover {
   color: #fff;
}

/* Links */
.footer-links {
   display: flex;
   align-items: center;
   gap: 50px;
   flex-wrap: wrap;
}

.footer-links a {
   color: #adadad;
   text-decoration: none;
   font-size: 15px;
}

.footer-links a:hover {
   color: #fff;
}

/* Copyright */
.copyright {
   border-top: 1px solid rgba(255, 255, 255, 0.15);
   margin-top: 40px;
   padding-top: 30px;
   color: #ccc;
   font-size: 15px;
}

/*Login Page*/
section.login {
    padding-top: 80px;
}
.half,
.half .container>.row {
   height: 100vh;
}

@media (max-width: 991.98px) {
   .half .bg {
      height: 500px;
   }
}

.half .contents,
.half .bg {
   width: 50%;
}

@media (max-width: 1199.98px) {

   .half .contents,
   .half .bg {
      width: 100%;
   }
}

.half .contents .form-group,
.half .bg .form-group {
   margin-bottom: 0;
   border: 1px solid #e0e0e0;
   padding: 15px 15px;
   border-bottom: none;
}

.half .contents .form-group.first,
.half .bg .form-group.first {
   border-top-left-radius: 7px;
   border-top-right-radius: 7px;
}

.half .contents .form-group.last,
.half .bg .form-group.last {
   border-bottom: 1px solid #e0e0e0;
   border-bottom-left-radius: 7px;
   border-bottom-right-radius: 7px;
}

.half .contents .form-group label,
.half .bg .form-group label {
   font-size: 12px;
   display: block;
   margin-bottom: 0;
   color: #b3b3b3;
}

.half .contents .form-control,
.half .bg .form-control {
   border: none;
   padding: 0;
   font-size: 20px;
   border-radius: 0;
}

.half .contents .form-control:active,
.half .contents .form-control:focus,
.half .bg .form-control:active,
.half .bg .form-control:focus {
   outline: none;
   -webkit-box-shadow: none;
   box-shadow: none;
}

.half .bg {
   background-size: cover;
   background-position: center;
}

.half a {
   color: #888;
   text-decoration: underline;
}

.half .forgot-pass {
    position: relative;
    font-size: 17px;
    color: #df1b2c;
    margin-left: 5px;
}

.control {
   display: block;
   position: relative;
   padding-left: 30px;
   margin-bottom: 15px;
   cursor: pointer;
   font-size: 14px;
}

.control .caption {
   position: relative;
   top: .2rem;
   color: #888;
}

.control input {
   position: absolute;
   z-index: -1;
   opacity: 0;
}

.control__indicator {
   position: absolute;
   top: 2px;
   left: 0;
   height: 22px;
   width: 22px;
   background: #e6e6e6;
   border-radius: 4px;
}

.control--radio .control__indicator {
   border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
   background: #ccc;
}

.control input:checked~.control__indicator {
   background: #00408f;
}

.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
   background: #00408f;
}

.control input:disabled~.control__indicator {
   background: #e6e6e6;
   opacity: 0.9;
   pointer-events: none;
}

.control__indicator:after {
   font-family: 'Font Awesome 7 Free';
   content: '\f00c';
   position: absolute;
   display: none;
   font-weight: 600;
   font-size: 15px;
   -webkit-transition: .3s all ease;
   -o-transition: .3s all ease;
   transition: .3s all ease;
}

.control input:checked~.control__indicator:after {
   display: block;
   color: #fff;
}

.control--checkbox .control__indicator:after {
   top: 50%;
   left: 50%;
   margin-top: -1px;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}

.control--checkbox input:disabled~.control__indicator:after {
   border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked~.control__indicator {
   background-color: #7e0cf5;
   opacity: .2;
}


/*Inner Page*/
section#banner-page{
   background-image:url(../img/2151872285.jpg);
}
section#banner-page .overlay {
    background:rgba(12, 16, 21, 0.76);
}
section#banner-page .hero-content h1 {
    font-weight: 300;
    font-size: 48px;
    margin-bottom: 30px;
}
section#banner-page .hero-content p {
    max-width: 100%;
}


.executive-section-rethinking{
    padding:20px 0 0;
}


/* Top */
.top-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:80px;
    margin-bottom:70px;
}
.progress-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}
.progress-icon i {
    font-size: 50px;
    color: #00408f;
}

.section-content{
    max-width:650px;
}


/* Text */
.stat-text h4 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 600;
}
.about-leader{
   padding: 100px 0;
}
.about-leader-box ul {
    padding: 0;
    margin: 15px 0 25px;
    display: block;
}
.about-leader-box ul li {
    display: block;
    margin: 12px 0;
}

section#banner-page.herobg2{
   background-image: url(../img/2151872284.jpg);
}
section#banner-page.contact{
   background-image: url(../img/189137.jpg);
}
#hire.who-we-are .icon-box {
    height: 350px;
}
#hire.who-we-are .icon-box {
    height: 380px;
    gap: 15px;
    justify-content: left;
}
#hire.who-we-are .icon-box small{
    font-size: 16px;
}
.hiring-icon .progress-icon {
    background: #00408f0a;
    border: 1px solid #00408f17;
}
.hiring-icon .top-row {
    margin-bottom: 40px;
}


.contact-form-wrapper{
    background:#fff;
    padding: 50px;
    border-radius:20px;
}

/* Input Style */
.custom-input,
.custom-textarea{
    border:1.5px solid #ccc;
    border-radius:16px;
    padding:18px 20px;
    font-size:16px;
    background:transparent;
    box-shadow:none;
    transition:0.3s ease;
}

.custom-input{
    height:62px;
}

.custom-input:focus,
.custom-textarea:focus{
    border-color:#df1b2c;
    box-shadow:none;
    background:#fff;
}

/* Placeholder */
.custom-input::placeholder,
.custom-textarea::placeholder{
    color:#111;
    font-weight:500;
}

/* Button */
.submit-btn{
    background:#df1b2c;
    color:#fff;
    padding:14px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    border:none;
    transition:0.3s ease;
}

.submit-btn:hover{
    background:#ea1919;
    color:#fff;
    transform:translateY(-2px);
}


/* Responsive */
@media (max-width: 991px) {

   .container{
        width:97%;
    }
   .custom-footer {
      padding: 60px 0 30px;
   }

   .footer-box h4 {
      font-size: 24px;
      margin-bottom: 20px;
   }

   .social-area h3 {
      font-size: 26px;
   }

   .footer-box ul li {
      margin-bottom: 12px;
   }
   .custom-footer .row.gy-5 {
       --bs-gutter-y: 1em;
   }
   .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
   }
}


@media(max-width:768px) {
   .logo img {
      width: 70px;
   }

   .navbar-toggler {
      border: none;
      box-shadow: none !important;
   }

   .btn-touch {
      margin-bottom: 25px;
   }

   .map-img img {
      width: 100%;
   }

   .ai-section .section-title h2 {
      font-size: 25px;
      letter-spacing: -0.5px;
      margin-bottom: 5px !important;
   }

   .section-title {
      margin-bottom: 20px;
   }

   .industry-section,
   .ai-section {
      padding: 50px 0;
   }

   .industry-section .tab-content {
      padding: 20px;
      margin-bottom: 20px;
   }

   .tab-image img {
      height: auto;
   }

   .tab-item {
      padding: 3px 0;
      width: 100%;
   }

   .grid-box.empty-box,
   .map-img {
      display: none;
   }

   .half .bg {
       display: none;
   }
   section.login{
      padding: 100px 10px 0;
   }
   section#banner-page .hero-content h1 {
       font-size: 25px;
       margin-bottom: 20px;
   }

   .section-title h2{
      font-size: 35px;
   }
   .what-we-do,
   .about-section {
      padding: 50px 0;
   }

   .content-inner h2,
   .about-heading h2 {
      font-size: 25px;
      margin-bottom: 0;
      line-height: 1.4;
   }

   .about-content p {
      font-size: 17px;
   }

   .about-box {
      padding: 30px 25px;
      border-radius: 20px;
   }
   .service-card {
       height: 300px;
   }
   .about-heading {
       margin: 0 auto 40px;
   }

   .content-box{
      padding: 30px;
      min-height: auto;
   }
   .dark-box h2 {
       font-size: 35px;
   }
   .dark-box p {
       font-size: 13px;
       letter-spacing: 3px;
   }
   .grid-box {
       height: 200px;       
   }
   .dark-box {
       padding: 25px;
   }
   .icon-box-wrapper {
       margin-top: 10px;
   }
   #hire .icon-box h4 {
       margin-bottom: 0;
       font-size: 25px;
       font-weight: 500;
   }

   .footer-links {
       gap: 10px;
   }
   .top-row{
      display: block;
   }
   .stat-card.d-flex.mb-5.gap-5 {
       gap: 2em !important;
       margin-bottom:1em !important;
   }
   .stat-text h4 {
       font-size: 22px;
   }
   .executive-section-rethinking {
       padding: 20px 0 0;
   }
   .about-leader{
      padding: 50px 0;
   }

}

/* DROPDOWN CUSTOM UI */
.navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.navbar .dropdown-item {
  padding: 10px 25px;
  font-weight: 500;
  font-size: 15px;
  color: #222;
  transition: 0.3s ease;
  position: relative;
}

.navbar .dropdown-item:hover, 
.navbar .dropdown-item:focus {
  background-color: transparent;
  color: #df1b2c;
  transform: translateX(5px);
}

/* DROPDOWN SUBMENU */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -10px;
  margin-left: 2px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > .dropdown-toggle::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  border: none;
  content: "\f105"; /* FontAwesome angle-right if FA is loaded, else fallback to simple arrow */
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
}
