/* css/styles.css */

/* Global Styles */

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

body {
font-family: "alfabet", sans-serif;
font-weight: 400;
font-style: normal;
}

h1, h2, h3 {
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}

/* Parent class for all custom CSS */


.ubuntu-header {
    background-color: #010101;
    color: white;
    padding: 20px 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    z-index: 9999999999;
    position: relative;
}

.ubuntu-header .logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.ubuntu-header .nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width:991px){
.ubuntu-header .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.ubuntu-header .nav-link {
    color: white;
    text-decoration: none;
    font-size: 33px;
    transition: all 0.3s 
ease;
    position: relative;
    padding: 5px 0;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}

.ubuntu-header .nav-link:hover {
    color: #ef8b21;
}
.ubuntu-header .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.ubuntu-header .nav-link:hover::after {
  width: 100%;
}


}.ubuntu-header .mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Dropdowun */
/* Dropdown Menu Styles - Orange, Black, White Theme */
@media (min-width:992px){
.nav-menu {
  position: relative;
}

.nav-menu li {
  position: relative;
}

/* Dropdown Container */
.nav-menu li.has-dropdown {
  position: relative;
}

/* Dropdown Toggle Arrow */

/* Dropdown Menu */
    .dropdown-menu2 {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #ffffff;
        border: 2px solid #ff7700;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 12px 0;
        margin-top: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        margin-left: 0;
    }

/* Show Dropdown on Hover */
.nav-menu li.has-dropdown:hover .dropdown-menu2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Dropdown Items */
.dropdown-menu2 li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ubuntu-header .dropdown-menu2 a {
    display: block;
    padding: 12px 24px !important;
    color: #1a1a1a !important;
    text-decoration: none;
    font-size: 15px !important;
    font-weight: 500 !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Hover Effect with Sliding Background */
.dropdown-menu2 a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff6b35, #ff8c61);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.dropdown-menu2 a:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.dropdown-menu2 a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent) !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.dropdown-menu2 a:hover::after {
  transform: translateX(0);
}

.dropdown-menu2 a:hover {
  color: #ff7700;
  padding-left: 32px;
}

/* Dropdown Divider */
.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  margin: 8px 16px;
  opacity: 0.3;
}

/* Animation Entrance Effect */
@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-15px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.nav-menu li.has-dropdown:hover .dropdown-menu2 li {
  animation: dropdownSlideIn 0.4s ease forwards;
}

.dropdown-menu2 li:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu2 li:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu2 li:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu2 li:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu2 li:nth-child(5) { animation-delay: 0.25s; }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .dropdown-menu2 {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid #ff6b35;
    margin-left: 20px;
    margin-top: 8px;
    padding-left: 12px;
  }
  
  .nav-menu li.has-dropdown:hover .dropdown-menu2 {
    transform: none;
  }
}
/* End */
/* Mobile responsiveness */
@media (max-width: 991px) {
  .ubuntu-header .nav-container {
    justify-content: space-between;
  }

  .ubuntu-header .mobile-toggle {
    display: block;
  }

  /* .ubuntu-header .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #010101;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    display: none;
    z-index: 1000;
  } */

  .ubuntu-header .nav-menu.active {
    display: flex;
  }
}

.ubuntu-animation-section {
  position: relative;
  width: 100%;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 16:9 Aspect Ratio Container */
.ubuntu-animation-section .aspect-container {
  position: relative;
  width: 100%;
}
.ubuntu-animation-section .aspect-container .background img {
  width: 100%;
  margin-top: -22px;
}
/* Background with animated circles */

/* Ubuntu Logo */
.ubuntu-animation-section .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.ubuntu-animation-section .logo {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 8vw;
  font-weight: 900;
  color: black;
  text-align: center;
  position: relative;
  display: inline-block;
}

.ubuntu-animation-section .logo-u {
  position: relative;
  display: inline-block;
}

.ubuntu-animation-section .logo-u::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2em;
  height: 1.2em;
  border: 6px solid #ff7700;
  border-radius: 50%;
  z-index: -1;
}

/* Tilted Strip */
.ubuntu-animation-section .tilted-strip {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  background-color: black;
  padding: 12px 40px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ubuntu-animation-section .strip-text {
  color: white;
  font-size: 86px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
.ubuntu-animation-section img.hero-logo {
  width: 80%;
  padding-bottom: 31px;
}
/* Animation keyframes */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) scale(1.1);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ubuntu-animation-section .logo {
    font-size: 12vw;
  }

  .ubuntu-animation-section .strip-text {
    font-size: 2.5vw;
  }

  .ubuntu-animation-section .tilted-strip {
    padding: 8px 20px;
  }

  .ubuntu-animation-section .circle {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .ubuntu-animation-section .logo {
    font-size: 16vw;
  }

  .ubuntu-animation-section .strip-text {
    font-size: 3.5vw;
  }

  .ubuntu-animation-section .tilted-strip {
    padding: 6px 15px;
  }

  .ubuntu-animation-section .circle {
    width: 12px;
    height: 12px;
  }
}

/* About Us */

section.about-us-wrapper {
  background: #000;
  padding: 100px 0;
  position: relative;
}
section.about-us-wrapper a.btn.border-btm i {
    font-size: 13px;
}
section.about-us-wrapper a.btn.border-btm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
section.about-us-wrapper .icon-fixed img {
  width: 74%;
}

section.about-us-wrapper .icon-fixed {
  position: absolute;
  bottom: -18%;
  right: 0;
  z-index: 9999;
}

section.about-us-wrapper .title-left {
    color: #fff;
    font-size: 70px;
    width: 90%;
    line-height: 66px;
    padding-bottom: 30px;
    font-weight: bold;
}
section.about-us-wrapper .sub-title {
    color: #f08900;
    font-size: 33px;
    text-transform: uppercase;
    font-family: "sztos-variable", sans-serif !important;
    font-variation-settings: "wdth" 100, "wght" 400;
}

section.about-us-wrapper p

 {
    color: #fff;
    font-size: 22px;
    padding: 20px 0px 30px 0px;
    font-family: alfabet, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.border-btm {
  font-size: 20px;
  color: #fff;
  padding: 10px 30px;
  border: 4px solid #f08900;
  border-radius: 100px;
  font-weight: bold;
  font-family: "degular-display", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal;
  letter-spacing: 1px;
}
 
section.features-section h2.section-heading {
    text-align: center;
    font-size: 160px;
    width: 80%;
    margin: 0 auto;
    font-weight: bold;
    line-height: 120px;
    padding-bottom: 98px;
}
.testimonials-section {
  background-color: #ede6d3;
  padding: 80px 0;
}

.testimonials-section .section-heading {
    font-size: 53px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonials-section .slick-arrow img {
  width: 51px;
}

.testimonials-section .testimonial-card {
    background-color: #ffffff;
    border-radius: 0;
    padding: 30px;
    height: 100%;
    position: relative;
    margin: 0 15px;
    height: 460px;
}
.testimonials-section .quote-icon {
  width: 90px;
  color: #ff7700;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
  margin-left: -44px;
  margin-top: -64px;
}
.testimonials-section .testimonial-text {
    line-height: 1.6;
    color: #888c8e;
    margin-bottom: 25px;
    padding: 30px;
    font-size: 20px;
    line-height: 24px;
    height: 291px;
    overflow: auto;
}


.testimonials-section .pull-quote {
    font-weight: bold;
    font-size: 30px;
    color: #000000;
    position: relative;
    padding-left: 15px;
    margin-top: 4px;
    line-height: 24px;
    margin-bottom: -6px;
    margin-left: 44px;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}
.testimonials-section .pull-quote::before

 {
    content: "";
    position: absolute;
    left: -36px;
    top: 5px;
    height: 76%;
    width: 4px;
    background-color: #ff9729;
    transform: rotate(90deg);
}

/* Slick Slider Custom Styles */
.testimonials-section .slick-slider {
  position: relative;
}

.testimonials-section .slick-prev {
  left: -25px;
}

.testimonials-section .slick-next {
  right: -25px;
}

.testimonials-section .slick-prev:before,
.testimonials-section .slick-next:before {
  color: #000000;
  font-size: 20px;
  display: none;
}

.testimonials-section button.slick-arrow {
  width: 51px;
  height: 51px;
  z-index: 99;
}
.testimonials-section .slick-dots {
  bottom: -50px;
}

.testimonials-section .slick-dots li button:before {
  font-size: 10px;
  color: #cccccc;
}

.testimonials-section .slick-dots li.slick-active button:before {
  color: #ff7700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials-section .section-heading {
    font-size: 2rem;
  }

  .testimonials-section .testimonial-card {
    padding: 25px;
  }

  .testimonials-section .slick-prev {
    left: 10px;
  }

  .testimonials-section .slick-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .section-heading {
    font-size: 1.8rem;
  }

  .testimonials-section .testimonial-card {
    padding: 20px;
    margin: 0 5px;
  }

  .testimonials-section .quote-icon {
    font-size: 3rem;
  }
}
.slick-track {
  padding: 39px 0;
}

section.featurs-work-wrapper {
  position: relative;
  clear: both;
  height: 820px;
}section.featurs-work-wrapper h2 {
    text-transform: uppercase;
}

section.featurs-work-wrapper img.workbg {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 1;
  overflow: hidden;
  height: 820px;
  object-fit: cover;
}

section.featurs-work-wrapper .container {
  position: relative;
  top: 0;
  z-index: 99;
  padding: 100px 0;
}


section.featurs-work-wrapper h2 {
    font-size: 34px;
    padding-top: 0;
    padding-bottom: 45px;
    font-weight: 900;
}
section.featurs-work-wrapper .work-card {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
section.featurs-work-wrapper .work-card img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

section.featurs-work-wrapper .row {
  justify-content: center;
}
section.featurs-work-wrapper .work-card {
  position: relative;
}

section.featurs-work-wrapper .work-card h3 {
  position: absolute;
  bottom: 37px;
  color: #fff;
}
section.featurs-work-wrapper .work-card h3 {
    position: absolute;
    top: 297px;
    color: #fff;
    font-size: 46px;
    line-height: 37px;
    letter-spacing: 2px;
    left: 1px;
    font-weight: bold;
    text-align: left;
}.btn-theme {
    display: inline-block;
    padding: 18px 41px;
    font-size: 20px;
    background: #000;
    color: #fff;
    transition: .3s;
    border-radius: 100px;
    font-weight: bold;
}.btn-theme:hover {
    background: #f08b21;
    color: #fff;
}

section.featurs-work-wrapper a.btn.btn-theme {
    position: absolute;
    right: 59px;
    bottom: -18px;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
    letter-spacing: 1px;
}
section.clients-wrapper {
    padding: 100px 0;
    background: #f7f7f7;
    position: relative;
    z-index: -1;
}
section.clients-wrapper .row {
  align-items: center;
}

section.clients-wrapper .logo-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

section.clients-wrapper .logo-wrapper ul li {
  width: 32%;
  list-style: none;
  transition: 0.3s;
}

section.clients-wrapper .logo-wrapper ul li:hover img {
  filter: brightness(0) invert(0);
}

section.clients-wrapper .logo-wrapper ul li img {
  width: 100%;
}

section.clients-wrapper .title-wrap {
  position: relative;
}
section.clients-wrapper .conection-img-wrap img {
    width: 100%;
}section.clients-wrapper .content {
    padding: 20px 0;
}section.clients-wrapper .content p {
    font-size: 22px;
}
section.clients-wrapper .title-wrap h2 {
    font-size: 58px;
    line-height: 51px;
    font-weight: bold;
}section.clients-wrapper .title-wrap h2 {
    position: relative;
}
section.clients-wrapper .title-wrap h2 span {
    margin-left: -7px;
}
section.clients-wrapper .title-wrap p:last-child {
    font-weight: bold;
}

section.clients-wrapper .title-wrap p:last-child span {
    font-size: 12px;
    margin-left: 2px;
}
section.clients-wrapper .title-wrap span.circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 6px solid #f08b21;
    border-radius: 100px;
    left: -43px;
    top: -5px;
    z-index: -1;
}
.stay-informed {
  background-color: #f5e8c7;
  padding: 60px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}

.stay-informed h2 {
  font-family: "Arial", sans-serif;
  font-size: 2em;
  color: #333;
  margin: 0;
  font-weight: bold;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 25px;
  outline: none;
  width: 200px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.subscribe-form button {
    padding: 10px 20px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    background-color: #000000;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.subscribe-form button:hover {
  background-color: #555;
}
.stay-informed .stay-wrap {
  display: flex;
  justify-content: start;
  gap: 20px;
}

.stay-informed .stay-wrap h2 {
  width: 50%;
  font-size: 92px;
  font-weight: bold;
  text-align: left;
}
.stay-informed .stay-wrap .subscribe-form {
  width: 50%;
}

.stay-informed .stay-wrap .subscribe-form input[type="email"] {
    width: 102%;
    height: auto;
    border-radius: 100px;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
    font-size: 20px;
    padding: 21px 27px;
}
.stay-informed .stay-wrap .subscribe-form button {
    height: auto;
    padding: 24px 40px;
    border-radius: 100px;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}

.footer {
  background-color: #000;
  padding: 80px 0;
}
.footer .container {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer .nav-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 19px;
    display: block;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}
.footer .nav-links a:hover {
    color: #f08b21;
}

.footer .logo {
  font-size: 1.5rem;
  font-weight: bold;
  width: 30%;
  display: flex;
  justify-content: center;
}

.footer .logo span {
  color: #ff6200;
}

.footer .social-icons a {
  color: #000000;
  margin-left: 15px;
  font-size: 1.2rem;
  text-decoration: none;
  background: #f08b21;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.footer .social-icons a:hover {
  color: #fff;
}
.footer .nav-links {
  display: flex;
  flex-wrap: wrap;
  width: 27%;
}

.footer .nav-links a {
  width: 37%;
}

.footer .social-icons {
  width: 23%;
  display: flex;
  justify-content: end;
}

.footer .logo img {
  width: 200px;
}


/* new-way-of-working-wrapper */
section.new-way-of-working-wrapper {
    padding: 100px 0;
}

.new-way-of-working-wrapper .comparison-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    /* position: relative; */
    overflow: hidden;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
}
.new-way-of-working-wrapper h2.section-heading {
    text-align: center;
    font-size: 160px;
    width: 80%;
    margin: 0 auto;
    font-weight: bold;
    line-height: 120px;
    padding-bottom: 98px;
}
.new-way-of-working-wrapper .comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.new-way-of-working-wrapper .comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.new-way-of-working-wrapper .old-model::before {
    background: linear-gradient(90deg, #6c757d, #adb5bd);
}

.new-way-of-working-wrapper .ubuntu-model::before {
    background: linear-gradient(90deg, #f08900, #ff9f1a);
}

.new-way-of-working-wrapper .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.new-way-of-working-wrapper .old-model .section-title {
    color: #343a40;
}

.new-way-of-working-wrapper .ubuntu-model .section-title {
    color: #343a40;
}

.new-way-of-working-wrapper .ubuntu-model .section-title span {
    background: linear-gradient(135deg, #f08900, #ff9f1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.new-way-of-working-wrapper .comparison-item {
    display: flex
;
    align-items: center;
    padding: 10px 8px;
    margin-bottom: 15px;
    background: rgb(248, 249, 250);
    border-radius: 15px;
    transition: 0.3s;
    position: relative;
}

.new-way-of-working-wrapper .old-model .comparison-item {
    border-left: 4px solid #6c757d;
}

.new-way-of-working-wrapper .old-model .comparison-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.new-way-of-working-wrapper .ubuntu-model .comparison-item {
    border-left: 4px solid #f08900;
}

.new-way-of-working-wrapper .ubuntu-model .comparison-item:hover {
    background: rgba(240, 137, 0, 0.08);
    transform: translateX(-5px);
}

.new-way-of-working-wrapper .item-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.new-way-of-working-wrapper .item-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.new-way-of-working-wrapper .old-model .item-icon {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.new-way-of-working-wrapper .ubuntu-model .item-icon {
    background: linear-gradient(135deg, #f08900, #ff9f1a);
    color: white;
 
}

.new-way-of-working-wrapper .item-text {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.new-way-of-working-wrapper .old-model .item-text {
    color: #343a40;
}

.new-way-of-working-wrapper .ubuntu-model .item-text {
    color: #343a40;
}

.new-way-of-working-wrapper .arrow-svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin: 0 15px;
}

.new-way-of-working-wrapper .center-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.new-way-of-working-wrapper .divider-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #f08900, transparent);
    position: absolute;
}

.new-way-of-working-wrapper .arrow-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.new-way-of-working-wrapper .transition-arrow {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f08900, #ff9f1a);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(240, 137, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(240, 137, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(240, 137, 0, 0.6);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .new-way-of-working-wrapper .main-title {
        font-size: 2.5rem;
    }

    .new-way-of-working-wrapper .section-title {
        font-size: 1.8rem;
    }

    .new-way-of-working-wrapper .comparison-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .new-way-of-working-wrapper .center-divider {
        display: none;
    }

    .new-way-of-working-wrapper .item-text {
        font-size: 1.1rem;
    }
    
    .new-way-of-working-wrapper .comparison-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .new-way-of-working-wrapper .main-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .new-way-of-working-wrapper .comparison-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .new-way-of-working-wrapper .item-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .new-way-of-working-wrapper .arrow-svg {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .new-way-of-working-wrapper .main-title {
        font-size: 1.8rem;
    }
    
    .new-way-of-working-wrapper .comparison-item {
        padding: 15px;
    }

    .new-way-of-working-wrapper .item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .new-way-of-working-wrapper .item-text {
        font-size: 1rem;
    }
}

/* End */

/* Start */
     /* Comparison Grid */
.model-comparison-section {
    background: #ffffff;
    padding: 100px 0px;
    position: relative;
}

     .model-comparison-section h2.section-heading {
    text-align: center;
    font-size: 160px;
    width: 80%;
    margin: 0 auto;
    font-weight: bold;
    line-height: 120px;
    padding-bottom: 98px;
}
.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 0;
  justify-content: center;
}

.comparison-grid .model-column {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s ease;
  width: 47%;
}

.comparison-grid .model-column-old {
    border-top: 5px solid #6c757d;
    background: #f5f5f5;
}

.comparison-grid .model-column-new {
  border-top: 5px solid #ef8b21;
  background: rgba(239, 139, 33, 0.05);
}

.comparison-grid .column-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-grid .model-column-old .column-title {
  color: #9ca3af;
}

.comparison-grid .model-column-new .column-title {
  color: #ef8b21;
}

.comparison-grid .feature-item {
  padding: 25px 30px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-grid .feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(239, 139, 33, 0.1);
  transition: width 0.3s ease;
}

.comparison-grid .feature-item:hover::before {
  width: 100%;
}

.comparison-grid .feature-item:hover {
  transform: translateX(10px);
  border-left-color: #ef8b21;
}

.comparison-grid .model-column-old .feature-item {
  color: #000000;
}

.comparison-grid .model-column-old .feature-item:hover {
  border-left-color: #6c757d;
}

.comparison-grid .feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Decorative Borders */
.comparison-grid .model-column-new .feature-item {
  border-radius: 20px;
  border: 2px solid #ef8b21;
}

.comparison-grid .model-column-old .feature-item {
  border-radius: 20px;
  border: 2px solid #9ca3af;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comparison-grid .model-column {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .comparison-grid .column-title {
    font-size: 1.8rem;
  }

  .comparison-grid .feature-item h4 {
    font-size: 1rem;
  }
}

/* Decorative Elements */
.comparison-grid .decoration-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ef8b21;
  border-radius: 50%;
  opacity: 0.3;
}

.comparison-grid .dot-1 { top: 10%; left: 5%; }
.comparison-grid .dot-2 { top: 20%; right: 10%; }
.comparison-grid .dot-3 { bottom: 15%; left: 8%; }
.comparison-grid .dot-4 { bottom: 25%; right: 5%; }

/* Number indicators */
.comparison-grid .feature-item::after {
  content: attr(data-number);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.05;
  z-index: 0;
}

/* End */

/* About FOunder  */
section.about-founder-wrapper {
    padding: 100px 0;
    padding-top: 60px;
}

section.about-founder-wrapper .fonder-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
}



section.about-founder-wrapper .fonder-header .founder-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

section.about-founder-wrapper .fonder-header .founder-img {
    width: 620px;
    height: 620px;
    display: flex;
    flex-shrink: 0;
}

section.about-founder-wrapper .fonder-header .founder-name h1 {
    font-size: 140px;
    font-family: 'degular-display';
    font-weight: bold;
    line-height: 100px;
    margin-left: -28px;
}

section.about-founder-wrapper .fonder-header .founder-name span {
    font-size: 30px;
    text-align: right;
    font-weight: bold;
    display: block;
}

section.about-founder-wrapper .fonder-header .logo-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 13px solid #ef8b21;
    border-radius: 50%;
    z-index: -1;
    left: 41%;
}
/* End */

/* Timeline */
.timeline-container {
    background: #ffffff;
    padding: 60px 20px;
    min-height: 100%;
}

.timeline-container h1 {
    text-align: center;
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}



.timeline-container .timeline-line {
    position: absolute;
    top: 189px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #ff6b35, #ff8c61);
    z-index: 1;
}

.timeline-container .timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.timeline-container .timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-container .timeline-card {
    background: #ffffff;
    border: 3px dashed #f08b21;
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 40px;
    min-height: 140px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
    transition: all 0.3s 
ease;
    text-align: center;
    height: 126px;
    position: relative;
}
.timeline-container .timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: #ff8c61;
}
.timeline-container .timeline-card h3 {
    color: #f08b21;
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 700;
}

.timeline-container .timeline-card p {
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}.timeline-wrapper {
    position: relative;
}

.timeline-container .timeline-dot {
    width: 20px;
    height: 20px;
    background: #f08b21;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #f08b21;
    margin-bottom: 15px;
    position: absolute;
    right: -19px;
    top: 179px;
}

.timeline-container .timeline-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: absolute;
    right: -38px;
    top: 212px;
    height: 100px !important;
}

.timeline-container .timeline-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 7px;
    width: 100%;
    max-width: 240px;
    margin-top: 100px;
}.timeline-line {
    position: absolute;
    top: 220px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #ff6b35, #ff8c61);
    z-index: 1;
}
.timeline-container .timeline-logo {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    transition: all 0.3s 
ease;
}

.timeline-container .timeline-logo:hover {
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.timeline-container .timeline-logo img {
    height: 100%;
    max-height: 71px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s 
ease;
    width: 100%;
    border-radius: 8px;
}

.timeline-container .timeline-logo:hover img {
    filter: grayscale(0%);
}

.timeline-container .timeline-logo-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

@media (max-width: 1200px) {
    .timeline-container .timeline-items {
        flex-wrap: wrap;
    }
    
    .timeline-container .timeline-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 60px;
    }

    .timeline-container .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-container h1 {
        font-size: 2rem;
    }

    .timeline-container .timeline-item {
        flex: 0 0 100%;
    }

    .timeline-container .timeline-card {
        max-width: 100%;
    }

    .timeline-container .timeline-logos {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-container .timeline-year {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 40px 15px;
    }

    .timeline-container .timeline-card {
        padding: 20px 15px;
        min-height: 120px;
    }

    .timeline-container .timeline-card h3 {
        font-size: 1.1rem;
    }

    .timeline-container .timeline-card p {
        font-size: 0.85rem;
    }

    .timeline-container .timeline-logos {
        gap: 10px;
    }
}

/* End */

/* Slider */
 .founder-page-slider  .slider-container {
   
  
     
      overflow: hidden;
      
    }

     .founder-page-slider .your-class img {
      width: 100%;
      height: auto;
      display: block;
    }
section.founder-page-slider img {
    width: 100%;
    height: 567px;
    object-fit: cover;
    border-radius: 0 !important;
}
    /* Custom Prev/Next Buttons with Image Icons */
 .founder-page-slider .custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  width: 75px;
    height: 75px;
    /* background: rgba(0, 0, 0, .5); */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background .3s;
    padding: 8px;
}
.founder-page-slider .slick-prev:before, .founder-page-slider .slick-next:before {
  display: none;
}
    .founder-page-slider  .custom-prev img, .custom-next img {
      width: 100%;
      height: 100%;
      filter: brightness(0) invert(1);
    }
   
    .founder-page-slider .custom-prev { left: 20px; }
   .founder-page-slider .custom-next {
    right: 43px;
}
  .founder-page-slider .slick-track {
    padding: 0;
}
  .founder-page-slider .slick-arrow img {
    height: auto;
    width: 61px !important;
    /* background: transparent; */
}
/* End */

/* Fonder page recent work */


.founder-page section.featurs-work-wrapper

 {
    height: auto;
    background: #4e524a;
}

.founder-page section.featurs-work-wrapper .btn-theme{
    background: #f08b21;
    color: #fff;
}.founder-page section.featurs-work-wrapper .btn-theme:hover {
    background: #000;
    color: #fff;
}
.founder-page section.featurs-work-wrapper .work-card h3 {
    position: absolute;
    bottom: 23px;
    color: #fff;
    font-size: 35px;
    line-height: 28px;
    letter-spacing: 2px;
    left: 1px;
    font-weight: bold;
    text-align: left;
}
.founder-page section.featurs-work-wrapper h2 {
    padding: 60px;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 60px;
}

.founder-page section.featurs-work-wrapper h2 span {
    color: #f08b21;
}

.founder-page section.featurs-work-wrapper .row {
    align-items: center;
}

.founder-page section.featurs-work-wrapper a.btn.btn-theme {
    position: relative;
    right: 0;
    bottom: 0;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
}.founder-page section.featurs-work-wrapper a.btn.btn-theme i {
    font-size: 15px;
    margin-top: 2px;
}
/* End */


/* =============== */
.features-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.features-section .section-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #000000;
}

.features-section .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: end;
  /* width: 87%; */
}

.features-section .circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 25px;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
}

.features-section .circle-light-beige {
  background-color: #eae3d3;
  color: #333333;
}

.features-section .circle-orange {
  background-color: #f08900;
  color: #ffffff;
}

.features-section .circle-dark-orange {
  background-color: #f08900;
  color: #ffffff;
}

.features-section .circle-yellow {
  background-color: #ffb500;
  color: #333333;
}

.features-section .circle-dark-grey {
  background-color: #888c8e;
  color: #ffffff;
}

.features-section .feature-text {
  font-size: 35px;
  font-weight: bold;
  line-height: 37px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .features-section .section-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .features-section .feature-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .features-section .circle {
    margin-right: 0;
    margin-bottom: 15px;
    width: 120px;
    height: 120px;
    font-size: 0.9rem;
  }

  .features-section .feature-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 60px 0;
  }

  .features-section .section-heading {
    font-size: 1.8rem;
  }

  .features-section .circle {
    width: 110px;
    height: 110px;
    font-size: 0.85rem;
  }
}

.features-section .feature-item .feature-text {
  text-align: right;
}

.features-section .col-lg-5.one .feature-item .feature-text {
  width: 600px !important;
  text-align: left;
  margin-left: -100px;
}
.features-section .col-lg-5.one .feature-item .feature-text p {
    margin: 0;
}
.features-section .col-lg-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.features-section .col-lg-5.two .feature-item .feature-text {
    margin-right: -75px;
    z-index: 999;
   
}.features-section .col-lg-5.two .feature-item .feature-text p {
    margin: 0;
}
.features-section .col-lg-5.one .feature-item {
  justify-content: start;
}
.features-section .feature-item h2 {
  font-size: 65px;
  line-height: 56px;
  font-weight: bold;
}
section.features-section h2.section-heading {
  text-align: center;
  font-size: 155px;
  width: 80%;
  margin: 0 auto;
  font-weight: bold;
  line-height: 120px;
  padding-bottom: 98px;
}



section.features-section .arrow-divider {
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px dashed #000;
    margin-top: -39px;
}

section.features-section .arrow-divider svg {
    position: absolute;
   
   
    
}



section.features-section .arrow-divider svg path {
    fill: white;
}

section.features-section .arrow-divider svg {
    fill: white;
    color: #f08900 !important;
    margin-left: 76px;
}
section.features-section .row {
  align-items: center;
}


section.features-section .section-header {
    display: grid
;
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #0000000d;
}section.features-section .section-title-old {
    text-align: right;
    color: #6c757d;
}

section.features-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}section.features-section .vs-divider {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ef8b21;
    display: flex
;
    align-items: center;
    justify-content: center;
}section.features-section .section-title-new {
    text-align: left;
    color: #ef8b21;
}
/* ============== */


/* Our Philosohpi */
.our-philos-video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: black;
}

.our-philos-video-wrapper video {
    width: 135%;
    height: 117%;
    object-fit: cover;
    display: block;
    margin: -70px -312px !important;
    margin: 0 auto;
    position: absolute;
}

.overlay-text {
    position: absolute;
    inset: 0;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 5vw;
    font-weight: 700;
    opacity: 0;
    

    top:40%;
    bottom: auto;
}

.overlay-text span {
  display: block;
  text-align: center;
    background: #ffff0000;
    height: 100%;
    padding: 0;
    line-height: 1.1;
    color: #ef8b21;
}section.we-are-wrapper {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #eae3d3;
}

section.we-are-wrapper .col-md-7 {
    margin-left: -51px;
}

section.we-are-wrapper  .img {
    position: absolute;
    left: -48px;
    width: 38% !important;
    top: 50%;
    transform: translateY(-50%);
}

section.we-are-wrapper  .img img {
    width: 100%;
}

section.we-are-wrapper .left-content h2 {
    position: relative;
    font-size: 64px;
    line-height: 51px;
    top: 40%;
    position: absolute;
    left: 88px;
    transform: translate(0, -50%);
}section.we-are-wrapper .right-content-wrap h3 {
    font-size: 43px;
    text-transform: uppercase;
    font-family: "alfabet", sans-serif !important;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
}

section.we-are-wrapper .right-content-wrap  h2 {
    font-size: 194px;
    line-height: 141px;
}section.we-are-wrapper .right-content-wrap p {
    padding: 30px 0;
    line-height: 28px;
}

section.we-are-wrapper .right-content-wrap .list p {
    padding: 0;
}

section.we-are-wrapper .right-content-wrap .list ul li {
    padding: 10px 0;
}
section.we-are-wrapper .right-content-wrap .list ul li {
    list-style: none;
}

section.we-are-wrapper .right-content-wrap .list ul {
    padding: 0;
}
section.we-are-wrapper .right-content-wrap  h4 {
    font-weight: bold;
    font-size: 24px !important;
    line-height: 35px;
}section.we-are-wrapper .right-content-wrap .list p i {
    font-size: 10px;
    margin-top: 0;
}

section.we-are-wrapper .right-content-wrap .list p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.our-philosophy-page section.featurs-work-wrapper h2 {
    padding: 60px;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 60px;
}.our-philosophy-page section.featurs-work-wrapper {
    height: auto;
    background: #4e524a;
}

.our-philosophy-page section.featurs-work-wrapper a.btn.btn-theme {
    position: relative;
    right: 0;
    bottom: 0;
    font-family: "degular-display", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
    letter-spacing: 1px;
}
.our-philosophy-page section.featurs-work-wrapper a.btn.btn-theme:hover {
    background: #000;
}
.our-philosophy-page  section.featurs-work-wrapper .btn-theme {
    background: #f08b21;
    color: #fff;
}.our-philosophy-page section.featurs-work-wrapper .row {
    align-items: center;
}


  /* Section 1: Global Strategy Section */
       .global-strategy-sec {
    background: #000000;
    
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

        .global-strategy-sec .strategy-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .global-strategy-sec .strategy-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #f08b21 0%, #ff9f3a 100%);
            opacity: 0.08;
        }

        .global-strategy-sec .strategy-shape-1 {
            width: 600px;
            height: 600px;
            top: -300px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .global-strategy-sec .strategy-shape-2 {
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -100px;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.05); }
        }

        .global-strategy-sec .strategy-content {
            position: relative;
            z-index: 10;
        }

        .global-strategy-sec .strategy-badge {
            display: inline-block;
            background: rgba(240, 139, 33, 0.1);
            border: 1px solid rgba(240, 139, 33, 0.3);
            color: #f08b21;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

       .global-strategy-sec .strategy-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
}

        .global-strategy-sec .strategy-title .highlight {
            background: linear-gradient(135deg, #f08b21 0%, #ff9f3a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .global-strategy-sec .strategy-description {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #b8b8b8;
            margin-bottom: 1.8rem;
            font-weight: 400;
        }

        .global-strategy-sec .strategy-trademark {
            color: #f08b21;
            font-weight: 700;
            position: relative;
        }

        .global-strategy-sec .strategy-line {
            width: 80px;
            height: 4px;
            background: #f08b21;
            margin-top: 3rem;
        }

        /* Section 2: Guiding Principles Section */
       .guiding-principles-sec {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

        .guiding-principles-sec .principles-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .guiding-principles-sec .principles-subtitle {
            color: #f08b21;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .guiding-principles-sec .principles-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #000000;
               letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .guiding-principles-sec .principle-card {
            background: #ffffff;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        .guiding-principles-sec .principle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f08b21 0%, #ff9f3a 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .guiding-principles-sec .principle-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            border-color: #f08b21;
        }

        .guiding-principles-sec .principle-card:hover::before {
            transform: scaleX(1);
        }

       .guiding-principles-sec .principle-number {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 1.5rem;
}

       .guiding-principles-sec .principle-card:hover .principle-number {
    color: rgb(240 139 33);
}

        .guiding-principles-sec .principle-heading {
            font-size: 1.75rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 1.2rem;
            letter-spacing: -0.5px;
        }

        .guiding-principles-sec .principle-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #666666;
            font-weight: 400;
        }

        /* Section 3: Our Essence Section */
     /* .our-essence-sec {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
        .our-essence-sec .essence-decoration {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240, 139, 33, 0.15) 0%, transparent 70%);
            bottom: -250px;
            right: -250px;
            pointer-events: none;
        }

        .our-essence-sec .essence-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 5;
        }

        .our-essence-sec .essence-label {
            color: #f08b21;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

      .our-essence-sec .essence-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

       .our-essence-sec .essence-grid {
    position: relative;
    z-index: 5;
    margin-bottom: 5rem;
    display: none;
}.our-essence-sec .essence-footer p {
    color: #fff;
}
        .our-essence-sec .essence-item {
            text-align: center;
            padding: 2.5rem 2rem;
            position: relative;
        }

        .our-essence-sec .essence-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.1);
        }

        .our-essence-sec .essence-item:last-child::after {
            display: none;
        }

        .our-essence-sec .essence-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(240, 139, 33, 0.2) 0%, rgba(255, 159, 58, 0.2) 100%);
            border: 2px solid rgba(240, 139, 33, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            font-weight: 800;
            color: #f08b21;
            transition: all 0.3s ease;
        }

        .our-essence-sec .essence-item:hover .essence-icon {
            background: linear-gradient(135deg, #f08b21 0%, #ff9f3a 100%);
            color: #000000;
            transform: scale(1.1);
        }

        .our-essence-sec .essence-item-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }

        .our-essence-sec .essence-item-text {
            font-size: 1rem;
            color: #999999;
            line-height: 1.6;
        }

        .our-essence-sec .essence-footer {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 5;
        }

        .our-essence-sec .essence-footer-text {
            font-size: 1.35rem;
            color: #cccccc;
            line-height: 1.9;
            margin-bottom: 0.8rem;
            font-weight: 400;
        }

        .our-essence-sec .essence-highlight {
            color: #f08b21;
            font-weight: 700;
        }

        .our-essence-sec .essence-final {
            font-size: 1.2rem;
            color: #ffffff;
            font-weight: 600;
            margin-top: 1.5rem;
            font-style: italic;
        } */

        @media (max-width: 992px) {
            .global-strategy-sec .strategy-title {
                font-size: 3rem;
            }

            .guiding-principles-sec .principles-title,
            .our-essence-sec .essence-main-title {
                font-size: 2.5rem;
            }

            .our-essence-sec .essence-item::after {
                display: none;
            }

            .guiding-principles-sec .principle-card {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .global-strategy-sec .strategy-title {
                font-size: 2.2rem;
                letter-spacing: -1px;
            }

            .global-strategy-sec .strategy-description {
                font-size: 1.1rem;
            }

            .guiding-principles-sec,
            .our-essence-sec {
                padding: 80px 0;
            }

            .guiding-principles-sec .principles-title,
            .our-essence-sec .essence-main-title {
                font-size: 2rem;
            }

            .our-essence-sec .essence-footer-text {
                font-size: 1.1rem;
            }
        }
/* End */

/* Service start */
.background-design {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
    background: #000;
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}
/* कंटेंट रैपर - मूल लेआउट को बरकरार रखते हुए */ 
.service-page .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* लेफ्ट पैनल - Ubuntu One और Brand Story */
.service-page .left-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Ubuntu One Circle - The Engine */
.service-page .engine-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.service-page .engine-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ef8b21;
 margin-bottom: 40px;
    text-transform: uppercase;
    background: rgba(239, 139, 33, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #ef8b21;
}.service-page .hero-section {
    padding: 55px 0;
}

/* Ubuntu One Circle - नया डिज़ाइन */
.service-page .ubuntu-circle-container {
    position: relative;
    width: 370px;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page .ubuntu-circle {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    position: relative;
    background: #ffffff;
    border: 5px solid #ef8b21;
    box-shadow: 0 0 30px rgba(239, 139, 33, 0.4), inset 0 0 30px rgba(239, 139, 33, 0.1);
    overflow: hidden;
    animation: gentleRotate 20s 
linear infinite;
}

.service-page .ubuntu-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(239, 139, 33, 0.15) 0%, transparent 50%);
}

@keyframes gentleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-page .circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   width: 128px;
    height: 128px;
    background: #ef8b21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ef8b21;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.service-page .circle-inner span {
    color: #ef8b21;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ऑर्बिट रिंग्स */
.service-page .orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(239, 139, 33, 0.3);
}

.service-page .ring-1 {
    width: 415px;
    height: 415px;
    animation: orbit 25s 
linear infinite;
}

.service-page .ring-2 {
    width: 380px;
    height: 380px;
    animation: orbit 30s linear infinite reverse;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ब्रांड स्टोरी - The Currency */
.service-page .brand-story-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.service-page .currency-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ef8b21;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: rgba(239, 139, 33, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #ef8b21;
}

.service-page .brand-story-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #ef8b21;
    position: relative;
}

.service-page .brand-story-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}

.service-page .brand-pillars-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-page .brand-pillars-list li {
    color: #ef8b21;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 20px;
    background: rgba(239, 139, 33, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ef8b21;
}

/* एरो कनेक्टर */
.service-page .arrow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    gap: 10px;
}

.service-page .arrow-down {
    font-size: 1.8rem;
    color: #ef8b21;
    animation: bounce 2s infinite;
}
.service-page  .arrow-down svg {
    transform: rotate(90deg) !important;
}
.service-page .arrow-down:nth-child(2) {
    animation-delay: 0.2s;
}

.service-page .arrow-down:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* सर्विसेज पैनल */
  

       .service-page   .services-panel  .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            padding: 20px;
        }

     .service-page   .services-panel    .service-item {
            height: 400px;
            perspective: 1500px;
            cursor: pointer;
        }

     .service-page   .services-panel    .service-item-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
            transform-style: preserve-3d;
        }

       .service-page   .services-panel  .service-item:hover .service-item-inner {
            transform: rotateY(180deg);
        }

     .service-page   .services-panel    .service-front,
     .service-page   .services-panel    .service-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 24px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            top: 0;
            left: 0;
        }

      .service-page   .services-panel   .service-front {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                        0 0 0 1px rgba(0, 0, 0, 0.05);
            position: relative;
            transform: rotateY(0deg);
        }.service-page-new .hero-content p {
    min-width: 700px;
    color: #fff;
    width: 900px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.service-page-new .hero-content p strong {
    display: block;
    color: #ef8b21;
    font-size: 24px;
    padding-top: 20px;
}
.service-page-new .hero-content p span {
    color: #ef8b21;
}

     .service-page   .services-panel    .service-front::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #f08b21 0%, #ff9a3c 100%);
        }

      .service-page   .services-panel   .service-back {
            background: linear-gradient(145deg, #f08b21 0%, #ff9a3c 100%);
            transform: rotateY(180deg);
            box-shadow: 0 20px 60px rgba(240, 139, 33, 0.4);
            position: absolute;
            top: 0;
            left: 0;
        }

     .service-page   .services-panel    .service-back::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

     .service-page   .services-panel    .service-back > * {
            position: relative;
            z-index: 1;
        }

     .service-page   .services-panel    .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #f08b21 0%, #ff9a3c 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(240, 139, 33, 0.3);
            flex-shrink: 0;
        }.service-page .services-panel .service-back .service-icon img {
    width: 53px;
   
}

.service-page .services-panel .service-icon img {
    width: 53px;
    filter: brightness(0) invert(1);
}.service-page .services-panel .service-front .service-icon img {
    width: 53px;
    filter: brightness(0) invert(1);
}
.service-page .services-panel .service-back .service-icon img {
    filter: inherit;
}
    .service-page   .services-panel     .service-front .service-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 24px;
            background: linear-gradient(135deg, #f08b21, #ff9a3c);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

       .service-page   .services-panel  .service-item:hover .service-front .service-icon::after {
            opacity: 0.3;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.1);
                opacity: 0;
            }
        }

       .service-page   .services-panel  .service-front .service-icon i {
            font-size: 44px;
            color: white;
            transition: transform 0.4s ease;
        }

      .service-page   .services-panel   .service-item:hover .service-front .service-icon i {
            transform: scale(1.1) rotate(5deg);
        }

      .service-page   .services-panel   .service-back .service-icon {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

      .service-page   .services-panel   .service-back .service-icon i {
            font-size: 44px;
            color: #f08b21;
        }

      .service-page   .services-panel   .service-front h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
            text-align: center;
            line-height: 1.3;
        }

     .service-page   .services-panel    .service-back h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            text-align: center;
            line-height: 1.3;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

   .service-page .services-panel .service-back p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-weight: 400;
    line-height: 20px;
}.service-page .services-panel .service-back p br {
    display: none;
}

       .service-page   .services-panel  .expand-indicator {
            position: absolute;
            bottom: 25px;
            font-size: 16px;
            color: #f08b21;
            animation: bounce 2s infinite;
            opacity: 0.7;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-12px);
            }
            60% {
                transform: translateY(-6px);
            }
        }

      .service-page   .services-panel   .service-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(240, 139, 33, 0.1);
            color: #f08b21;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
          .service-page   .services-panel   .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

          .service-page   .services-panel   .service-item {
                height: 380px;
            }

          .service-page   .services-panel   .service-front h3,
          .service-page   .services-panel   .service-back h3 {
                font-size: 22px;
            }

         .service-page   .services-panel    .service-back p {
                font-size: 15px;
            }
        }

        @media (hover: none) {
        .service-page   .services-panel     .service-item-inner {
                transform: none !important;
            }
            
          .service-page   .services-panel   .service-item.active .service-item-inner {
                transform: rotateY(180deg) !important;
            }
        }

/* फ्लिप ओवर एनीमेशन विकल्प */
.service-page .flip-over {
    position: relative;
    height: 180px;
    perspective: 1000px;
}

.service-page .flip-over-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-page .flip-over:hover .flip-over-inner {
    transform: rotateY(180deg);
}

.service-page .flip-over-front, 
.service-page .flip-over-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 25px;
}

.service-page .flip-over-front {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-page .flip-over-back {
    background: linear-gradient(135deg, #ef8b21 0%, #ff9d3a 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* फुटर */
.service-page .footer {
    text-align: center;
    margin-top: 0;
    padding-top: 30px;
    /* border-top: 1px solid #eeeeee; */
    color: #888888;
    font-size: 0.9rem;
}

/* रिस्पॉन्सिव डिज़ाइन */
@media (max-width: 1200px) {
    .service-page .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-page .main-title {
        font-size: 2.5rem;
    }
    
    .service-page .subtitle {
        font-size: 1.5rem;
    }
    
    .service-page .ubuntu-circle-container {
        width: 250px;
        height: 250px;
    }
    
    .service-page .ubuntu-circle {
        width: 230px;
        height: 230px;
    }
    
    .service-page .circle-inner {
        width: 100px;
        height: 100px;
    }
    
    .service-page .ring-1 {
        width: 290px;
        height: 290px;
    }
    
    .service-page .ring-2 {
        width: 330px;
        height: 330px;
    }
    
    .service-page .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-page .brand-pillars-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-page .container {
        padding: 20px 15px;
    }
    
    .service-page .main-title {
        font-size: 2rem;
    }
    
    .service-page .subtitle {
        font-size: 1.3rem;
    }
    
    .service-page .ubuntu-circle-container {
        width: 200px;
        height: 200px;
    }
    
    .service-page .ubuntu-circle {
        width: 180px;
        height: 180px;
    }
    
    .service-page .circle-inner {
        width: 80px;
        height: 80px;
    }
    
    .service-page .circle-inner span {
        font-size: 1.4rem;
    }
    
    .service-page .ring-1 {
        width: 240px;
        height: 240px;
    }
    
    .service-page .ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .service-page .brand-story-box {
        padding: 20px;
    }
    
    .service-page .brand-story-box h2 {
        font-size: 1.5rem;
    }
    
    .service-page .services-title {
        font-size: 1.7rem;
    }
}
.service-page .ubuntu-circle img {
    width: 100%;
    padding: 10px;
}.service-page .circle-inner img {
    width: 81px;
    filter: brightness(0) invert(1);
}
/* ENd */

/* LIne arrow  */
.line-arrow-wrappper {
    text-align: center;
    position: relative;
    margin-top: -56px;
    margin-bottom: 86px;
}

    /* मोटी हॉरिजॉन्टल लाइन */
.line-arrow-wrappper .line {
    height: 1px;
    background: #f18a140f;
    width: 98%;
    margin: 0 auto;
    position: relative;
}

    /* तीन डाउन एरो जो लाइन से बिल्कुल चिपके हुए हैं */
 .line-arrow-wrappper .down-arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -49px;
    display: flex;
    gap: 122px;
    font-size: 48px;
    color: #f18a14;
}

   .line-arrow-wrappper   .down-arrows span {
      animation: bounce 2s infinite;
    }

    /* हर एरो को थोड़ा अलग टाइमिंग (wave effect) */
   .line-arrow-wrappper   .down-arrows span:nth-child(1) { animation-delay: 0s; }
   .line-arrow-wrappper   .down-arrows span:nth-child(2) { animation-delay: 0.15s; }
   .line-arrow-wrappper   .down-arrows span:nth-child(3) { animation-delay: 0.3s; }

    /* सिर्फ़ ऊपर-नीचे smooth bounce */
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(20px); }
    }

    /* ऊपर टेक्स्ट (जरूरत हो तो) */
  .line-arrow-wrappper    .text {
      font-size: 24px;
      margin-bottom: 30px;
      color: #333;
    }

 /* modallllllll========= */
/* Hero Section - BLACK */

.ubuntu-modal-page .hero-section .circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffa50000;
    opacity: .3;
    border: 9px solid #ef8b21;
}

      .ubuntu-modal-page .hero-section  .circle:nth-child(1) {
            top: 10%;
            left: 20%;
            animation: float1 8s ease-in-out infinite;
        }

      .ubuntu-modal-page .hero-section  .circle:nth-child(2) {
            top: 60%;
            left: 70%;
            animation: float2 10s ease-in-out infinite;
        }

     .ubuntu-modal-page .hero-section   .circle:nth-child(3) {
            top: 30%;
            left: 80%;
            animation: float3 12s ease-in-out infinite;
        }

     .ubuntu-modal-page .hero-section   .circle:nth-child(4) {
            top: 70%;
            left: 10%;
            animation: float4 9s ease-in-out infinite;
        }

     .ubuntu-modal-page .hero-section   .circle:nth-child(5) {
            top: 50%;
            left: 40%;
            animation: float5 11s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(50px, -50px) scale(1.2);
            }
            50% {
                transform: translate(100px, 30px) scale(0.8);
            }
            75% {
                transform: translate(-30px, 60px) scale(1.1);
            }
        }

        @keyframes float2 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(-80px, 40px) scale(1.3);
            }
            66% {
                transform: translate(40px, -70px) scale(0.9);
            }
        }

        @keyframes float3 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            30% {
                transform: translate(-60px, -40px) scale(1.1);
            }
            60% {
                transform: translate(20px, 80px) scale(1.4);
            }
        }

        @keyframes float4 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            40% {
                transform: translate(70px, 50px) scale(0.7);
            }
            80% {
                transform: translate(-50px, -30px) scale(1.2);
            }
        }

        @keyframes float5 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(-40px, 60px) scale(1.3);
            }
            50% {
                transform: translate(60px, -50px) scale(0.8);
            }
            75% {
                transform: translate(-70px, -20px) scale(1.1);
            }
        }

.ubuntu-modal-page .hero-section {
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.ubuntu-modal-page .why-card:before {
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -16px;
    content: "";
    top: 19px;
    z-index: 1;
    border-radius: 100px 0px 0px 0px;
}

.ubuntu-modal-page .why-card .wrap {
    padding: 60px 40px;
    background: #fff;
    position: relative;
    z-index: 999;
    height: 100%;
    border-radius: 100px 0px 0px 0px;
}

.ubuntu-modal-page .why-card:hover {
    border-radius: 100px 0px 0px  !important;
}
.ubuntu-modal-page .why-card {

    border-radius: 100px 0px 0px 0px;
}
.ubuntu-modal-page .why-card:hover::after {
    border-radius: 100px 0px 0px;
}
.ubuntu-modal-page .hero-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: #000;
    /* animation: heroFloat 15s 
ease-in-out infinite; */
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(5deg); }
}

.ubuntu-modal-page .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 80px 40px;
    position: absolute;
    z-index: 99999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000cc;
}.ubuntu-modal-page.our-philosophy-page section.ubuntu-animation-section video {
    height: 700px !important;
    object-fit: cover;
}

.ubuntu-modal-page .hero-title {
    font-size: 7rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1;
    animation: fadeInScale 1s ease;
    padding-top: 25px;
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.ubuntu-modal-page .hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #ef8b21;
    margin-bottom: 60px;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ubuntu-modal-page .scroll-down {
    width: 50px;
    height: 80px;
    border: 2px solid #ef8b21;
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
}

.ubuntu-modal-page .scroll-down::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 15px;
    background: #ef8b21;
    border-radius: 3px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: 10px; opacity: 1; }
    100% { top: 50px; opacity: 0; }
}

/* Featured Articles - WHITE */
.ubuntu-modal-page .featured-section {
    background: #ffffff;
    padding: 100px 40px;
    position: relative;
}

.ubuntu-modal-page .featured-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(239, 139, 33, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.ubuntu-modal-page .section-header {
    text-align: center;
    margin-bottom: 100px;
}

.ubuntu-modal-page .section-tag {
    display: inline-block;
    padding: 10px 30px;
    background: #000000;
    color: #ef8b21;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 30px;
}

.ubuntu-modal-page .section-title {
    font-size: 60px;
    font-weight: 900;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.ubuntu-modal-page .articles-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.ubuntu-modal-page .article-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    padding: 50px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ubuntu-modal-page .article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ef8b21, #ff9d3a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.ubuntu-modal-page .article-card:hover::before {
    transform: scaleX(1);
}

.ubuntu-modal-page .article-card:hover {
    border-color: #ef8b21;
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.ubuntu-modal-page .article-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ef8b21;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
}

.ubuntu-modal-page .article-source {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 25px;
}
.ubuntu-modal-page .article-source img {
    height: 58px;
}
.ubuntu-modal-page .article-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ubuntu-modal-page .article-desc {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.6;
}

/* Quote Section - BLACK */
.ubuntu-modal-page .quote-section {
    background: #000000;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.ubuntu-modal-page .quote-section::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    font-weight: 900;
    color: rgba(239, 139, 33, 0.03);
    line-height: 1;
    pointer-events: none;
}

.ubuntu-modal-page .quote-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ubuntu-modal-page .quote-text {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.ubuntu-modal-page .quote-highlight {
    color: #ef8b21;
    font-weight: 700;
}

.ubuntu-modal-page .quote-author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ubuntu-modal-page .author-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef8b21, #ff9d3a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
}

.ubuntu-modal-page .author-details h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.ubuntu-modal-page .author-details p {
    font-size: 1.2rem;
    color: #ef8b21;
}

/* Why Section - WHITE */
.ubuntu-modal-page .why-section {
    background: #ffffff;
    padding: 100px 40px;
}

.ubuntu-modal-page .why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ubuntu-modal-page .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.ubuntu-modal-page .why-card {
    text-align: center;
  
    background: #ffffff;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
}
.ubuntu-modal-page .why-card:hover::before {
    background: #ef8b21;
}
.ubuntu-modal-page .why-card::after {
    content: '';
    position: absolute;
    inset: 0;
   
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ubuntu-modal-page .why-card:hover::after {
    opacity: 1;
}

.ubuntu-modal-page .why-card:hover {
    transform: scale(1.05);
}

.ubuntu-modal-page .why-number {
    font-size: 5rem;
    font-weight: 900;
    color: #ef8b21;
    opacity: 0.3;
    margin-bottom: 30px;
}

.ubuntu-modal-page .why-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
}

.ubuntu-modal-page .why-card p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
}

/* Ubuntu Model - BLACK */
.ubuntu-modal-page .ubuntu-section {
    background: #000000;
    padding: 100px 40px;
    position: relative;
}
.ubuntu-modal-page .model-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 0;
}

.ubuntu-modal-page .model-header h2 {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
}
.ubuntu-modal-page .model-header p {
    font-size: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.ubuntu-modal-page .model-highlight {
    color: #ef8b21;
    font-weight: 700;
}

/* Ubuntu Visualization */
.ubuntu-modal-page .ubuntu-visual {
    max-width: 1000px;
    margin: 100px auto;
    position: relative;
    height: 600px;
}

.ubuntu-modal-page .central-hub {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef8b21, #ff9d3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubuntu-modal-page .central-hub h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
}

.ubuntu-modal-page .pillar {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ffffff;
    border: 17px solid #ef8b21;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    animation: pillarFloat 6s 
ease-in-out infinite;
}


.ubuntu-modal-page .pillar:nth-child(2) {
    bottom: 50px;
    left: 50px;
}

.ubuntu-modal-page .pillar:nth-child(3) {
    bottom: 50px;
    right: 50px;
}.ubuntu-modal-page .article-source img {
    height: 37px;
}

.ubuntu-modal-page .pillar:nth-child(3) {
    top: 0;
    left: 10% !important;
}
.ubuntu-modal-page .central-hub img {
    width: 286px;
    filter: brightness(0) invert(1);
}
.ubuntu-modal-page .pillar:nth-child(4) {
    top: 0;
    right:10% !important;
}

.ubuntu-modal-page .pillar:nth-child(1) {
    bottom: -7% !important;
    left: 49%;
    transform: translateX(-50%) !important;
}

@keyframes pillarFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.ubuntu-modal-page .pillar h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
}

.ubuntu-modal-page .pillar p {
    font-size: 1rem;
    color: #666666;
}

/* Benefits Section - WHITE */
.ubuntu-modal-page .benefits-section {
    background: #fffaf3;
    padding: 100px 40px;
}
.ubuntu-modal-page .benefits-grid {
    max-width: 1400px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.ubuntu-modal-page .benefit-item {
    padding: 28px 40px;
    background: #ffffff;
    border-left: 5px solid #000000;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 17px;
}



.ubuntu-modal-page .benefit-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    height: 0;
   
    transition: height 0.4s ease;
}/* 5th item ko center karega */
.ubuntu-modal-page .benefits-grid > *:nth-child(5) {
      grid-column: 1 / -1;  /* पूरी row लेगा */
    justify-self: center;
}
.ubuntu-modal-page .benefits-grid .benefit-item:nth-child(1) {
    background: #fa9732;
}

.ubuntu-modal-page .benefits-grid .benefit-item:nth-child(2) {
    background: #000000;
}

.ubuntu-modal-page .benefits-grid .benefit-item:nth-child(4) {
    background: #fa9732;
}

.ubuntu-modal-page .benefits-grid .benefit-item:nth-child(5) {
    background: #000;
}

.ubuntu-modal-page .benefits-grid .benefit-item:nth-child(3) h3 {
    color: #000;
}

.ubuntu-modal-page .benefits-grid .benefit-item:nth-child(3) p {
    color: #000;
}
.ubuntu-modal-page .benefit-item:hover::before {
    height: 100%;
}

.ubuntu-modal-page .benefit-item:hover {
    transform: translateX(15px);
}
.ubuntu-modal-page .benefit-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.ubuntu-modal-page .benefit-item p {
    font-size: 1.1rem;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .ubuntu-modal-page .hero-title { font-size: 5rem; }
    .ubuntu-modal-page .section-title { font-size: 3rem; }
    .ubuntu-modal-page .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .ubuntu-modal-page .ubuntu-visual { height: 800px; }
}

@media (max-width: 768px) {
    .ubuntu-modal-page .hero-title { font-size: 3.5rem; }
    .ubuntu-modal-page .hero-subtitle { font-size: 1.5rem; }
    .ubuntu-modal-page .section-title { font-size: 2.5rem; }
    .ubuntu-modal-page .quote-text { font-size: 1.8rem; }
    .ubuntu-modal-page .articles-container { grid-template-columns: 1fr; }
    .ubuntu-modal-page .benefits-grid { grid-template-columns: 1fr; }
    .ubuntu-modal-page .model-header h2 { font-size: 3rem; }
    .ubuntu-modal-page .central-hub { width: 180px; height: 180px; }
    .ubuntu-modal-page .pillar { width: 160px; height: 160px; }
}

 /* End */

         /* Ubuntu Model Section Styles */
        .the-ubuntumodal-one {
            background: #ffffff;
            padding: 100px 0;
            position: relative;
        }

        .the-ubuntumodal-one .container {
            max-width: 1200px;
        }

        .the-ubuntumodal-one-content-wrapper {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .the-ubuntumodal-one-left {
            flex: 1;
            animation: fadeInLeft 0.8s ease-out;
        }

        .the-ubuntumodal-one-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 0.8s ease-out;
        }

        .the-ubuntumodal-one-main-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .the-ubuntumodal-one-intro {
            margin-bottom: 40px;
        }

        .the-ubuntumodal-one-text {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #333333;
            margin-bottom: 12px;
            font-weight: 400;
        }

        .the-ubuntumodal-one-features {
            margin: 45px 0;
            padding: 35px 0;
            border-top: 2px solid #f0f0f0;
            border-bottom: 2px solid #f0f0f0;
        }

        .the-ubuntumodal-one-feature-item {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 18px;
            font-size: 1.3rem;
        }

        .the-ubuntumodal-one-feature-item:last-child {
            margin-bottom: 0;
        }

        .the-ubuntumodal-one-feature-label {
            color: #f08b21;
            font-weight: 700;
            font-size: 1.3rem;
        }

        .the-ubuntumodal-one-feature-value {
            color: #1a1a1a;
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: 0.5px;
        }

        .the-ubuntumodal-one-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333333;
            margin: 35px 0;
            font-weight: 400;
        }

        .the-ubuntumodal-one-brand {
            margin-top: 45px;
            padding-top: 35px;
            border-top: 1px solid #e5e5e5;
        }

        .the-ubuntumodal-one-brand-name {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.3px;
        }

        .the-ubuntumodal-one-diagram {
            width: 100%;
            max-width: 450px;
            position: relative;
        }

        .the-ubuntumodal-one-svg {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
        }

        .the-ubuntumodal-one-label-outer {
            font-size: 20px;
            font-weight: 600;
            fill: #1a1a1a;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        .the-ubuntumodal-one-label-middle {
            font-size: 22px;
            font-weight: 700;
            fill: #ffffff;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        .the-ubuntumodal-one-label-inner {
            font-size: 20px;
            font-weight: 700;
            fill: #ffffff;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        @media (max-width: 992px) {
            .the-ubuntumodal-one-content-wrapper {
                flex-direction: column;
                gap: 60px;
            }

            .the-ubuntumodal-one-main-title {
                font-size: 2.5rem;
            }

            .the-ubuntumodal-one-diagram {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .the-ubuntumodal-one {
                padding: 70px 0;
            }

            .the-ubuntumodal-one-main-title {
                font-size: 2rem;
            }

            .the-ubuntumodal-one-text {
                font-size: 1.05rem;
            }

            .the-ubuntumodal-one-feature-item {
                font-size: 1.1rem;
                flex-direction: column;
                gap: 5px;
            }

            .the-ubuntumodal-one-feature-label,
            .the-ubuntumodal-one-feature-value {
                font-size: 1.1rem;
            }

            .the-ubuntumodal-one-description {
                font-size: 1rem;
            }

            .the-ubuntumodal-one-brand-name {
                font-size: 1.6rem;
            }

            .the-ubuntumodal-one-diagram {
                max-width: 350px;
            }

            .the-ubuntumodal-one-label-outer {
                font-size: 16px;
            }

            .the-ubuntumodal-one-label-middle {
                font-size: 18px;
            }

            .the-ubuntumodal-one-label-inner {
                font-size: 16px;
            }
        }


        /* Global */


/* Currency of Connection Section */
.currency-of-conection {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}



.currency-of-conection .section-title {
    text-align: center;
    margin-bottom: 60px;
}
section.currency-of-conection .row {
    justify-content: center;
}
.currency-of-conection .main-title {
    color: #f08b21;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 2px;
}
.currency-of-conection .sub-title {
    color: #ffffff;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 2px;
}

.currency-of-conection .feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.currency-of-conection .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f08b21;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.currency-of-conection .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(240, 139, 33, 0.15);
    border-color: #f08b21;
}

.currency-of-conection .feature-card:hover::before {
    transform: scaleX(1);
}

.currency-of-conection .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f08b21 0%, #ff9f3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.currency-of-conection .feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.currency-of-conection .feature-icon i {
    font-size: 32px;
    color: white;
}

.currency-of-conection .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.currency-of-conection .feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* Integrated Intelligence Section */
.integrated-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.integrated-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 139, 33, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.integrated-section .container {
    position: relative;
    z-index: 1;
}

.integrated-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.integrated-section .main-heading {
    color: #000000;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 66px;
}

.integrated-section .grid-container {
    display: flex;
    align-items: stretch;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.integrated-section .grid-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #f08b21 20%, #f08b21 80%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.integrated-section .intelligence-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 24px;
    padding: 50px 30px;
    position: relative;
    border: 1px solid rgba(240, 139, 33, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex: 1;
    min-width: 0;
    z-index: 1;
}

.integrated-section .intelligence-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(145deg, #f08b21, transparent, transparent, #f08b21);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.integrated-section .intelligence-card:hover::before {
    opacity: 1;
}

.integrated-section .intelligence-card:hover {
    transform: translateY(-10px);
    border-color: #f08b21;
    box-shadow: 0 20px 60px rgba(240, 139, 33, 0.3);
}

.integrated-section .intelligence-card.featured {
    background: linear-gradient(145deg, #f08b21 0%, #d97617 100%);
    border-color: #f08b21;
    flex: 1.2;
}

.integrated-section .card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.integrated-section .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(240, 139, 33, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.integrated-section .intelligence-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(240, 139, 33, 0.25);
}

.integrated-section .intelligence-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.integrated-section .card-icon i {
    font-size: 32px;
    color: #f08b21;
}

.integrated-section .intelligence-card.featured .card-icon i {
    color: white;
}

.integrated-section .card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.integrated-section .card-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.integrated-section .intelligence-card.featured .card-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.integrated-section .integration-tags {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.integrated-section .integration-tag {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.integrated-section .tag-paid,
.integrated-section .tag-earned,
.integrated-section .tag-owned {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.integrated-section .intelligence-card.featured:hover .integration-tag {
    transform: translateY(-3px);
    background: white;
    color: #f08b21;
}


/* Responsive */
@media (max-width: 768px) {
    .currency-of-conection .main-title {
        font-size: 2rem;
    }

    .currency-of-conection .sub-title {
        font-size: 1.5rem;
    }

    .currency-of-conection .feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .integrated-section .main-heading {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .integrated-section .grid-container {
        flex-direction: column;
        gap: 25px;
    }

    .integrated-section .grid-container::before {
        display: none;
    }

    .integrated-section .intelligence-card {
        padding: 40px 30px;
    }

    .integrated-section .intelligence-card.featured {
        flex: 1;
    }

    .integrated-section .card-number {
        font-size: 3.5rem;
        top: 15px;
        right: 20px;
    }

    .integrated-section .card-title {
        font-size: 1.5rem;
    }

    .integrated-section .integration-tags {
        gap: 10px;
    }
}

    /* End */
    

    /* Our Work */
section.work-wrapper {
    padding: 100px 0;
}

section.work-wrapper .title-wrap {
    text-align: center;
}

section.work-wrapper .title-wrap h1 {
    position: relative;
    font-size: 140px;
    margin-bottom: 115px;
}
section.work-wrapper .title-wrap h1 span.circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 13px solid #f08b21;
    border-radius: 100px;
    left: 49%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

section.work-wrapper .title-wrap h2 {
    font-size: 54px;
    padding-bottom: 80px;
}

section.work-wrapper .about-work-wrappper {
    width: 100%;
    display: flex;
    /* row-gap: 20px; */
}

section.work-wrapper .about-work-wrappper .about-work-wrap {
    display: flex;
    gap: 20px;
    padding: 0px 20px 0px 0px;
    background: #000;
    width: 100%;
    border-radius: 100px;
    align-items: center;
}

section.work-wrapper .row {
    row-gap: 20px;
}

section.work-wrapper .about-work-wrappper .about-work-wrap .num {
    width: 177px;
    height: 177px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    background: #fff;
    border-radius: 100px;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    line-height: 48px;
}

section.work-wrapper .about-work-wrappper .about-work-wrap .con {
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    padding-right: 82px;
}

.about-work-wrappper.orange .about-work-wrap {
    background: #EF8803 !important;
}

.about-work-wrappper.orange .about-work-wrap .num {
    background: #DF4715 !important;
}

.about-work-wrappper.light-gray .about-work-wrap {
    background: #868A8E!important;
}

.about-work-wrappper.light-gray .about-work-wrap .num {
    background: #474C50!important;
    color: #fff;
}

.about-work-wrappper.dark-gray .about-work-wrap {
    background: #4D524B!important;
}

.about-work-wrappper.dark-gray .about-work-wrap .num {
    background: #171915!important;
    color: #fff;
}

.about-work-wrappper.yellow .about-work-wrap {
    background: #FCB715!important;
    color: #000 !important;
}

.about-work-wrappper.yellow .about-work-wrap .num {
    background: #FA8003!important;
}

.about-work-wrappper.yellow .about-work-wrap .con {
    color: #000 !important;
}

 /* Case Studies Section Styles */
        .case-study-wrapper {
            background: #000;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .case-study-wrapper::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(240, 139, 33, 0.1);
            top: -150px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }
        
        .case-study-wrapper::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(240, 139, 33, 0.08);
            bottom: -100px;
            left: -80px;
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            50% {
                transform: translateY(-20px) translateX(10px);
            }
        }
        
        .case-study-wrapper .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .case-study-wrapper .section-subtitle {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #f08b21;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
       .case-study-wrapper .section-main-title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}


        
        .case-study-wrapper .section-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .case-study-wrapper .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .case-study-wrapper .case-study-card {
            background: #fff;
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(240, 139, 33, 0.2);
            border: 2px solid transparent;
        }
        
        .case-study-wrapper .case-study-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(240, 139, 33, 0.4);
            border-color: #f08b21;
        }
        
        .case-study-wrapper .case-image {
            width: 100%;
            height: 220px;
            background: #f08b21;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #fff;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }
        
        .case-study-wrapper .case-study-card:nth-child(2) .case-image {
            background: #000;
        }
        
        .case-study-wrapper .case-study-card:nth-child(3) .case-image {
            background: #f08b21;
        }
        
        .case-study-wrapper .case-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .case-study-wrapper .case-study-card:hover .case-image::before {
            opacity: 1;
        }
        
        .case-study-wrapper .case-content {
            padding: 30px;
        }
        
        .case-study-wrapper .case-category {
            display: inline-block;
            background: #f08b21;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 15px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        
        .case-study-wrapper .case-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .case-study-wrapper .case-description {
            font-size: 0.95rem;
            color: #000;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.7;
        }
        
        .case-study-wrapper .case-metrics {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
            padding-top: 20px;
            border-top: 2px solid rgba(0, 0, 0, 0.1);
        }
        
        .case-study-wrapper .metric-item {
            flex: 1;
        }
        
        .case-study-wrapper .metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f08b21;
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .case-study-wrapper .metric-label {
            font-size: 0.75rem;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            opacity: 0.6;
        }
        
        .case-study-wrapper .case-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #f08b21;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: gap 0.3s ease;
        }
        
        .case-study-wrapper .case-link:hover {
            gap: 12px;
            color: #000;
        }
        
        .case-study-wrapper .arrow {
            transition: transform 0.3s ease;
        }
        
        .case-study-wrapper .case-link:hover .arrow {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .case-study-wrapper .section-main-title {
                font-size: 2rem;
            }
            
            .case-study-wrapper .section-description {
                font-size: 1rem;
            }
            
            .case-study-wrapper .case-studies-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .case-study-wrapper .case-metrics {
                flex-direction: column;
                gap: 15px;
            }
            
            .case-study-wrapper .metric-value {
                font-size: 1.5rem;
            }
        }.our-work-page section.featurs-work-wrapper .row {
    row-gap: 56px;
}

/* Slider Section */
     .slider-section {
    background: #00000000;
    padding: 0;
    position: relative;
    overflow: hidden;
}
        .slider-section .slider-container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }

        .slider-section .slick-slider {
            position: relative;
        }

       .slider-section .slide-item {
    height: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    outline: none;
}
section.work-details-wrapper video {
    width: 100%;
}

section.work-details-wrapper .left-wrap {
    background: #000000;
    padding: 24px;
    border-radius: 10px;
}
section.work-details-wrapper .contet-wrap {
    margin-left: 100px;
}
        .slider-section .slide-item.gradient-1 {
            background: linear-gradient(90deg, #333 0%, #666 50%, #999 100%);
        }

        .slider-section .slide-item.gradient-2 {
            background: linear-gradient(90deg, #f9a825 0%, #f57c00 100%);
        }

        .slider-section .slide-item.gradient-3 {
            background: linear-gradient(90deg, #d97a1a 0%, #8b4513 100%);
        }

        .slider-section .slide-item.gradient-4 {
            background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
        }

        .slider-section .slide-item.gradient-5 {
            background: linear-gradient(90deg, #134e5e 0%, #71b280 100%);
        }

        .slider-section .slide-item.gradient-6 {
            background: linear-gradient(90deg, #aa076b 0%, #61045f 100%);
        }

        /* Custom Arrow Styles */
     .slider-section .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0%);
    border: 0;
    cursor: pointer;
    transition: all 0.3s 
ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

        .slider-section .slick-arrow:hover {
           
            transform: translateY(-50%) scale(1.1);
        }

        .slider-section .slick-arrow::before {
            display: none;
        }

        .slider-section .slick-prev {
            left: 40px;
        }

        .slider-section .slick-next {
            right: 40px;
        }

       .slider-section .slick-arrow img {
    width: 54px;
    height: 54px;
    filter: invert(0);
}
.slider-section .slick-dots {
    bottom: 30px;
    display: none;
}
        /* Arrow SVG Icons */
        .slider-section .arrow-icon {
            width: 24px;
            height: 24px;
        }

        /* Slick Dots */
        .slider-section .slick-dots {
            bottom: 30px;
        }

        .slider-section .slick-dots li button:before {
            font-size: 12px;
            color: #fff;
            opacity: 0.5;
        }

        .slider-section .slick-dots li.slick-active button:before {
            opacity: 1;
            color: #fff;
        }

        @media (max-width: 768px) {
              .slider-section .slide-item {
             height: auto !important;
    }.slider-section .slick-arrow img {
    width: 54px;
    height: auto;
    filter: invert(0);
}section.slider-section div#work-slide-one img {
            height: auto !important;
    object-fit: cover;
}section.slider-section div#work-slide-one img {
            height: auto !important;
    object-fit: cover;
}

            .slider-section .slick-arrow {
                width: 45px;
                height: 45px;
            }

            .slider-section .slick-prev {
                left: 20px;
            }

            .slider-section .slick-next {
                right: 20px;
            }

            .slider-section .arrow-icon {
                width: 18px;
                height: 18px;
            }
        }.slider-section .slick-track { padding:0px}

      .slider-section  .slick-slide img {
    display: block;
    width: 100%;
}
    /* End */

section.work-details-hero-section {
    padding: 0px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    height: 100%;
}


section.work-details-hero-section .work-bakground-img-video img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}


section.work-details-hero-section .work-item-header {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    width: 100%;
    z-index: 9;
}section.work-details-hero-section .work-item-header.container-fluid {
    padding: 0px 80px 0px 80px;
}

section.work-details-hero-section h3 {
    font-size: 73px;
    padding-top: 79px;
    line-height: 66px;
}section.work-details-wrapper {
    padding: 20px 0px 50px 0px;
}
section.work-details-wrapper .row {
    align-items: center;
}
section.work-details-hero-section .work-item-header h1 {
    font-size: 233px;
    line-height: 182px;
    position: relative;
    margin-right: -213px;
    width: 132%;
   height: 381px;
    display: flex;
    align-items: center;
    padding-top: 17px;
}
section.work-details-hero-section .work-item-header .img-wrap img {
    width: 100%;
}

section.work-details-hero-section .work-item-header .img-wrap {
    margin-top: -382px;
    width: 653px;
    right: 0;
    position: relative;
    z-index: -1;
    display: flex;
    justify-content: end;
}
section.work-details-hero-section .work-item-header .img-wrap img {
    width: 100%;
    width: 580px;
}
section.work-details-wrapper .title-wrap img {
    width: 300px;
}
section.work-details-wrapper .title-wrap {
    text-align: center;
    padding-bottom: 40px;
}section.work-details-wrapper .left-wrap img {
    width: 100%;
}section.work-details-hero-section .work-item-header h1 span.circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 19px solid #f08b21;
    border-radius: 100px;
    left: -198px;
    top: -67px;
    z-index: -1;
    border-radius: 50%;
}
section.work-details-hero-section .work-item-header a.hero-link {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: #f08b21;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 37px;
    padding-left: 248px;
    text-align: left;
    display: block;
    padding-top: 0;
    position: relative;
}

.testimonial-section {
    background-color: #e8dfc8;
    padding: 0;
    margin-top: 100px;
}
        
       .testimonial-section  .testimonial-card {
            background-color: #e8dfc8;
            padding: 50px 60px;
            position: relative;
            margin: 0;
        }
        
    .testimonial-section     .quote-icon {
            width: 100px;
            height: 80px;
            margin-bottom: 30px;
            margin-left: -10px;
        }
        
    .testimonial-section .testimonial-text {
    font-style: italic;
    color: #000;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
    padding-left: 149px;
}
      .testimonial-section   .testimonial-text strong {
            font-weight: 700;
        }
        
     .testimonial-section .title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 148px;
}
        
     .testimonial-section    .orange-line {
            width: 70px;
            height: 4px;
            background-color: #f39200;
            flex-shrink: 0;
        }
        
      .testimonial-section   .testimonial-title {
            color: #6b6b6b;
            font-size: 36px;
            font-weight: 700;
            margin: 0;
        }.testimonial-section .testimonial-card img {
    width: 144px;
    margin-top: -145px;
}
        
        .navigation-bar {
            background-color: #f39200;
            padding: 30px 0;
        }
        
      .navigation-bar .nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s 
ease;
    display: inline-flex;
    align-items: center;
}
        
       .navigation-bar   .nav-link:hover {
            color: #fff;
            opacity: 0.85;
        }
        
        .navigation-bar  .nav-link.prev {
            gap: 10px;
        }
        
        .navigation-bar  .nav-link.next {
            gap: 10px;
        }
        
       .navigation-bar   .nav-link i {
            font-size: 14px;
        }
    /* End */

    /* BLog STart */
.blog-section { padding: 100px 0; background: #f9f9f9; }
    
    .blog-section__card { 
      background: transparent; 
      border: none; 
      transition: transform 0.3s ease;
    }
    .blog-section__card:hover { transform: translateY(-10px); }

    .blog-section__img {
      width: 100%;
      height: 320px;
      background: #4a4a4a;
      background-image: linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.12) 49.5%, rgba(255,255,255,0.12) 50.5%, transparent 51%);
      background-size: 100% 100%;
    }

    .blog-section__content { padding: 24px 0 0; }

    .blog-section__date {
      font-size: 0.875rem;
      color: #999999;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .blog-section__title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #222222;
      line-height: 1.4;
      margin-bottom: 10px;
    }
section.blog-section h1 {
    font-size: 100px;
    text-align: center;
    padding-bottom: 100px;
}
    .blog-section__author {
      font-size: 0.8rem;
      color: #666666;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    /* Featured post (left column) */
   .blog-section__card--featured .blog-section__img {
    height: 339px;
}.blog-section__card--featured .blog-section__img {
    overflow: hidden;
}

.blog-section__card--featured .blog-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}.blog-section__content a {
    text-decoration: none;
}
    .blog-section__card--featured .blog-section__title {
      font-size: 1.65rem;
      font-weight: 700;
      color: #000000;
    }

    @media (max-width: 992px) {
      .blog-section__card--featured .blog-section__img { height: 380px; }
      .blog-section__card--featured .blog-section__title { font-size: 1.5rem; }
    }
    @media (max-width: 768px) {
      .blog-section__img { height: 260px !important; }
      .blog-section__card--featured .blog-section__title { font-size: 1.4rem; }
    }

    /* End */

    /* Blog Details start */
.blog-detail {
      padding: 100px 0 120px;
      background: linear-gradient(to bottom, #e9ecef 0%, #ffffff 300px, #ffffff 100%);
     
      color: #222;
    }

   .blog-detail__header {
    margin-bottom: 60px;
    padding-top: 100px;
}

    .blog-detail__author {
      font-size: 0.95rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .blog-detail__title {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.15;
      color: #000;
      margin-bottom: 20px;
    }

 .blog-detail__date-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 114px;
    height: 114px;
    background: #f39200;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
}
  .blog-detail__section-title {
    font-size: 41px;
    font-weight: 700;
    color: #f39200;
    margin: 30px 0 10px;
    position: relative;
}
section.blog-detail h3 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #dddddd82;
    padding-bottom: 10px;
}
    .blog-detail__text {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 24px;
    }

   .blog-detail__list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}
    .blog-detail__list li {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 32px;
      padding-left: 4px;
      position: relative;
    }
.Conclusion {
    background: #f2f2f2;
    padding: 30px;
}
    .blog-detail__list li strong {
      color: #000;
    }

  .blog-detail__list p {
    font-size: 1.05rem;
    font-weight: normal;
    color: #444;
    margin: 0px 0 0;
    line-height: 1.7;
}
  .blog-detail__list a {
    color: #f39200;
    font-weight: 600;
    text-decoration: none;
}
    .blog-detail__list a:hover {
      text-decoration: underline;
    }

    .blog-detail__cta {
      font-size: 1.3rem;
      font-weight: 600;
      color: #000;
      margin-top: 80px;
    }
.blog-detail__cta a

 {
    color: #f39200;
    text-decoration: none;
}
    @media (max-width: 992px) {
      .blog-detail { padding: 80px 0; }
      .blog-detail__title { font-size: 2.5rem; }
    }

    @media (max-width: 768px) {
      .blog-detail__title { font-size: 2.2rem; }
      .blog-detail__date-badge { width: 60px; height: 60px; font-size: 1rem; }
      .blog-detail__section-title { font-size: 1.6rem; }
    }

 

.blog--details-page .blog-section__img {
    height: 500px;
    overflow: hidden;
}.blog--details-page .blog-section__img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.blog--details-page section.blog-detail {
    padding-top: 0;
}
    /* End */

    /* Parent class to scope all custom styles */
   .custom-contact-section

 {
    padding: 100px 0;
 
}.custom-contact-section .title {
    text-align: center;
    padding-bottom: 70px;
}

.custom-contact-section .title h1 {
    font-size: 100px;
}

.custom-contact-section .title h3 {
    font-size: 45px;
}

.custom-contact-section .form-wrappper {
    background: #f5f0e9;
    max-width: 100%;
    background: #ebe5d4;
    margin: 0 auto;
    padding: 100px 0;
}.custom-contact-section .form-wrappper {
    position: relative;
}

.custom-contact-section .form-wrappper img.logo-c {
    position: absolute;
    width: 200px;
    right: -28px;
    top: -114px;
}

section.custom-contact-section {
    overflow: hidden;
}
    .custom-contact-section .form-label {
      font-weight: 500;
      color: #333;
      margin-bottom: 8px;
    }
.custom-contact-section .form-control {
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    height: 62px;
}

    .custom-contact-section .form-control:focus {
      box-shadow: 0 0 0 0.25rem rgba(255, 149, 0, 0.15);
      border-color: #ff9500;
    }

    .custom-contact-section .btn-submit {
      background: #1a1a1a;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 12px 32px;
      font-weight: 600;
      transition: all 0.3s;
    }.custom-contact-section .btn-submit:hover {
    color: #000;
    background: #ff9500;
}
.custom-contact-section .btn-submit:hover {
    background: #ff9500;
    color: #000;
}
    .custom-contact-section .btn-submit:hover {
      background: #333;
      transform: translateY(-2px);
    }

    /* Newsletter Section */
    .custom-contact-section .newsletter-section {
    margin-top: 150px;
    text-align: center;
    position: relative;
    padding: 80px 20px;
    padding-bottom: 190px;
}.custom-contact-section .newsletter-section .stay-in {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.custom-contact-section .newsletter-form p {
    font-size: 39px !important;
    font-weight: bold !important;
    margin: 0;
}

 .custom-contact-section .circle-orange {
    width: 504px;
    height: 504px;
    background: #ff9500;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -66px;
    z-index: 1;
    transform: translateY(-50%);
}

 .custom-contact-section .stay-informed-text {
    font-size: 221px;
    font-weight: 900;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    line-height: 1;
}

   .custom-contact-section .lightbulb-img {
    width: 253px;
    height: auto;
    border-radius: 0;
    position: absolute;
    z-index: 2;
    bottom: -341px;
    left: 228px;
}
  .custom-contact-section .logo-u {
    position: absolute;
    bottom: -168px;
    left: 101px;
    transform: translateX(-50%);
    width: 123px;
    z-index: 3;
    filter: brightness(0);
}
.custom-contact-section .newsletter-form {
    max-width: 51%;
    margin-right: 0;
    display: flex;
    gap: 15px;
    justify-content: end;
    flex-wrap: wrap;
    margin-left: auto;
    margin-top: -50px;
}

    .custom-contact-section .newsletter-input {
      flex: 1;
      min-width: 280px;
      background: #e8e2d9;
      border: none;
      border-radius: 50px;
      padding: 16px 24px;
      font-size: 1rem;
    }
.custom-contact-section .btn-subscribe:hover {
    background: #ff9500;
    color: #000;
}
    .custom-contact-section .btn-subscribe {
      background: #1a1a1a;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 16px 32px;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .custom-contact-section .stay-informed-text {
        font-size: 3rem;
      }
      .custom-contact-section .circle-orange {
        width: 220px;
        height: 220px;
        top: -30px;
      }
      .custom-contact-section .lightbulb-img {
        width: 220px;
        height: 220px;
      }
    }.title-with-bg {
    background: #fcb715;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-with-bg h2 {
    font-size: 60px;
    position: relative;
    z-index: 2;
}

.title-with-bg .bg-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1;
    padding: 0;
    margin: 0;
}

.title-with-bg .bg-circle .circ {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #fa8003;
    display: block;
}


/* Ubuntu modal page */
section.ubuntu-mod-wrapper img.UbuntuModel-bg {
    width: 100%;
    position: absolute;
    top: 116px;
    left: 0;
    height: 780px;
    width: 100%;
    object-fit: cover;
}section.ubuntu-mod-wrapper {
    height: 780px;
}.ubuntu-section-one .brain-circle .circle-inner img {
    width: 134px !important;
    filter: brightness(0) invert(1);
}
section.ubuntu-mod-wrapper .content {
    color: #fff;
    position: relative;
    padding: 80px 0;
}

section.ubuntu-mod-wrapper .content h2 {
    font-size: 55px;
    padding-bottom: 30px;
}

section.ubuntu-mod-wrapper .content p {
    font-size: 18px;
}

section.ubuntu-mod-wrapper .content h3 {
    color: #e78300;
    padding-bottom: 15px;
    width: 87%;
}

 /* Section 1 Styles */
        .ubuntu-section-one {
          
            padding: 80px 0;
        }section.ubuntu-section-one {
    background-color: #ede6d3 !important;
}
section.ubuntu-section-one {
    background-size: cover !important;
}
        .ubuntu-section-one .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            color: #000;
        }

.ubuntu-section-one .brain-circle {
    width: 279px;
    height: 279px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 0px;
   
}
.ubuntu-section-one .brain-circle img

 {
    width: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
        .ubuntu-section-one .inner-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: #ff7340;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .ubuntu-section-one .inner-circle-text {
            color: #fff;
            font-weight: 700;
            font-size: 1.5rem;
            text-align: center;
            line-height: 1.3;
        }

        .ubuntu-section-one .circle-labels {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .ubuntu-section-one .label {
            position: absolute;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ubuntu-section-one .label-top {
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .ubuntu-section-one .label-right {
            right: -45px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
        }

        .ubuntu-section-one .label-bottom {
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .ubuntu-section-one .label-left {
            left: -50px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
        }

        .ubuntu-section-one .brain-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

.ubuntu-section-one .arrow-down {
    text-align: center;
    font-size: 3rem;
    margin: 0;
    font-weight: 300;
    margin-top: 27px;
    transform: rotate(90deg) !important;
    margin-left: 18px;
    margin-bottom: 20px;
}
        .ubuntu-section-one .description-box {
            text-align: center;
            margin-bottom: 40px;
        }

     .ubuntu-section-one .description-title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.6;
}

    .ubuntu-section-one .tagline {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 20px;
    line-height: 1.6;
}
 .ubuntu-section-one .arrow-right {
    display: flex;
    align-items: start;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    padding-top: 197px;
    margin-left: -130px;
}
        .ubuntu-section-one .content-box {
            padding: 20px;
        }

        .ubuntu-section-one .content-text {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .ubuntu-section-one .content-text strong {
            font-weight: 700;
        }

       
   .ubuntu-section-one .highlight-box {
    margin-top: 0;
    padding: 0;
    /* background-color: #fff; */
}

        .ubuntu-section-one .highlight-text {
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.6;
            margin-bottom: 10px;
        }
.ubuntu-section-one .content-box ul li:last-child {
    list-style: none;
}
        .ubuntu-section-one .sub-text {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Section 2 Styles */
      .ubuntu-section-two {
    background-color: #ffffff;
    padding: 80px 0;
    background-size: cover !important;
}

        .ubuntu-section-two .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            color: #000;
        }

   .ubuntu-section-two .component-circle {
    /* width: 200px; */
    /* height: 200px; */
    /* border-radius: 50%; */
    /* border: 4px solid #000; */
    /* background-color: #f18900; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height:200px;
    border-radius: 100px;
    border: 2px dashed #000;
    margin-top: -39px;
}

    .ubuntu-section-two .component-title {
    color: #000000;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
    line-height: 1.3;
    padding: 20px;
}.ubuntu-section-two .row .col-md-4 .component-circle {
    background-color: #eae3d3;
    border: navajowhite;
}
 .ubuntu-section-two .component-label {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 49px;
    text-align: center;
    color: #ef8b21;
}

.ubuntu-section-two .arrow-down {
    text-align: center;
    font-size: 3rem;
    margin: 0;
    font-weight: 300;
    margin-top: -12px;
    transform: rotate(90deg) !important;
    margin-left: 23px;
    margin-bottom: 17px;
}

       .ubuntu-section-two .description-text {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: center;
}
   .ubuntu-section-two .tagline {
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
    line-height: 1.6;
    text-align: center;
}

.ubuntu-section-two .operator {
    font-size: 4rem;
    font-weight: 900;
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 0 30px;
    margin-top: -186px;
    margin-left: -14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

        @media (max-width: 768px) {
            .ubuntu-section-one .section-title,
            .ubuntu-section-two .section-title {
                font-size: 2.5rem;
            }

            .ubuntu-section-one .brain-circle {
                width: 220px;
                height: 220px;
            }

            .ubuntu-section-one .inner-circle {
                width: 160px;
                height: 160px;
            }

            .ubuntu-section-two .operator {
                font-size: 3rem;
                margin: 30px 0;
            }
        }.service-item-wrapper {
    padding: 80px 0 !important;
    background: #fff !important;
}.service-page-new .ubuntu-animation-section {
    position: relative;
    width: 100%;
    background-color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 590px;
    overflow: hidden;
}
/* ENd */

.timeline-container .timeline-items .timeline-item:last-child .timeline-year {
    display: none;
}

.timeline-container .timeline-items .timeline-item:last-child .timeline-dot {
    display: none;
}

@media (max-width: 992px) {

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 85vw;
        height: 100vh;
        background: #1b1b1b;
        color: white;
        flex-direction: column;
        transition: right 0.35s cubic-bezier(0.74, 0.01, 0.22, 0.99);
        z-index: 9999;
        padding-top: 70px;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: white;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    /* Arrow for items with children */
        .has-dropdown > .nav-link {
        position: relative;
        padding-right: 50px;
        display: inline-block;
        width: 81%;
    }

        .has-dropdown > .nav-link::after {
        content: "▶";
        position: absolute;
        right: -32px;
        font-size: 0.9em;
        transition: transform 0.25s ease;
        opacity: 1;
        color: #e78300;
    }

    /* Rotate arrow when submenu is open */
    .has-dropdown.open > .nav-link::after {
        transform: rotate(90deg);
    }

    /* Submenu mobile style */
    .dropdown-menu2 {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .has-dropdown.open .dropdown-menu2 {
        max-height: 400px;   /* big enough or use JS to calculate */
        padding: 8px 0;
    }

    .dropdown-menu2 li a {
        padding-left: 35px;
        font-size: 0.96em;
        color: #ddd;
    }ul#menu-header li {
    list-style: none;
}.nav-link {
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 6px;
    }    .dropdown-menu2 {
     
        margin-left: 0;
        margin-top: 8px;
        padding-left: 12px;
    }
}

.navigation-bar a {
    color: #000000;
    text-decoration: none;
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    display: flex;
    align-items: center;
    gap: 10px;
}.cta-bottom-button {
    text-align: center;
}

section.featurs-work-wrapper .btn-featured-work a.btn.btn-theme {
    position: relative;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

section.featurs-work-wrapper .btn-featured-work {
    text-align: center;
    margin-top: 49px;
    margin-right: 0 !important;
    margin-left: 85px !important;
}









.our-essence-sec {
    padding: 100px 0;
    background-color: #f1f1f1;
    position: relative;
    overflow: hidden;
}

.our-essence-sec .essence-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 139, 33, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.our-essence-sec .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.our-essence-sec .essence-header {
    text-align: center;
    margin-bottom: 80px;
}

.our-essence-sec .essence-label {
    display: inline-block;
    padding: 10px 28px;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.our-essence-sec .essence-main-title {
    font-size: 56px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: block;
}


/* Grid */
.our-essence-sec .essence-grid {
    margin-bottom: 80px;
}

.our-essence-sec .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Essence Items */
.our-essence-sec .essence-item {
    text-align: center;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 3px solid #f5f5f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.our-essence-sec .essence-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #f08b21 0%, #ff9d3d 100%);
    transition: height 0.4s ease;
    z-index: 1;
}

.our-essence-sec .essence-item:hover::before {
    height: 100%;
}

.our-essence-sec .essence-item:hover {
    transform: translateY(-10px);
    border-color: #f08b21;
    box-shadow: 0 25px 50px rgba(240, 139, 33, 0.2);
}

.our-essence-sec .essence-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #f08b21 0%, #ff9d3d 100%);
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.our-essence-sec .essence-item:hover .essence-icon {
    background: #ffffff;
    color: #f08b21;
    transform: scale(1.1) rotate(10deg);
}

.our-essence-sec .essence-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.our-essence-sec .essence-item:hover .essence-item-title {
    color: #ffffff;
}

.our-essence-sec .essence-item-text {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.our-essence-sec .essence-item:hover .essence-item-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Content */
.our-essence-sec .essence-footer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.our-essence-sec .essence-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f08b21 0%, #ff9d3d 50%, #f08b21 100%);
}

.our-essence-sec .essence-footer-main {
    margin-bottom: 40px;
}

.our-essence-sec .essence-footer-intro {
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.our-essence-sec .essence-brand-name {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #f08b21 0%, #ff9d3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 25px 0;
    display: inline-block;
}

.our-essence-sec .essence-footer-desc {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.our-essence-sec .essence-footer-closing {
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.our-essence-sec .essence-footer-closing p {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 991px) {
    .our-essence-sec {
        padding: 80px 0;
    }

    .our-essence-sec .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .our-essence-sec .essence-main-title {
        font-size: 42px;
    }

    .our-essence-sec .essence-brand-name {
        font-size: 38px;
    }

    .our-essence-sec .essence-footer-desc {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .our-essence-sec {
        padding: 60px 0;
    }

    .our-essence-sec .essence-header {
        margin-bottom: 50px;
    }

    .our-essence-sec .essence-main-title {
        font-size: 36px;
    }

    .our-essence-sec .essence-item {
        padding: 40px 25px;
    }

    .our-essence-sec .essence-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .our-essence-sec .essence-item-title {
        font-size: 22px;
    }

    .our-essence-sec .essence-footer {
        padding: 40px 30px;
    }

    .our-essence-sec .essence-footer-intro {
        font-size: 18px;
    }

    .our-essence-sec .essence-brand-name {
        font-size: 32px;
    }

    .our-essence-sec .essence-footer-desc {
        font-size: 18px;
    }

    .our-essence-sec .essence-footer-closing p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .our-essence-sec .essence-main-title {
        font-size: 28px;
    }

    .our-essence-sec .essence-brand-name {
        font-size: 28px;
    }

    .our-essence-sec .essence-footer-desc {
        font-size: 16px;
    }

    .our-essence-sec .essence-footer {
        padding: 30px 20px;
    }
}.our-essence-sec .essence-grid .col-lg-4 {
    width: 100%;
}.stay-informed .stay-wrap .subscribe-form button i {
    font-size: 15px;
    margin-top: 2px;
}

.stay-informed .stay-wrap .subscribe-form button {
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
}
.stay-informed .stay-wrap .subscribe-form button span {
    display: inline-block;
    line-height: 1;
}section.featurs-work-wrapper .btn-featured-work a.btn.btn-theme {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

section.featurs-work-wrapper .btn-featured-work a.btn.btn-theme i {
    font-size: 15px;
    margin-top: 2px;
}section.slider-section div#work-slide-one img {
    height: 450px;
    object-fit: cover;
}

section.slider-section div#work-slide-one .slick-arrow img {
    height: auto !important;
}.navigation-bar .text-end {
    text-align: right !important;
    display: flex;
    justify-content: end;
}

.postid-402 .orange-line {
    display: none;
}

.postid-400 section.work-details-hero-section .work-item-header h1 {
    font-size: 166px;
    line-height: 137px;
    position: relative;
    margin-right: -213px;
    width: 132%;
    height: 381px;
    display: flex;
    align-items: center;
    padding-top: 17px;
}.postid-402 section.work-details-hero-section .work-item-header h1 {
    font-size: 198px;
    line-height: 182px;
    position: relative;
    margin-right: -213px;
    width: 132%;
    height: 381px;
    display: flex;
    align-items: center;
    padding-top: 17px;
}

.subscribe-form form input.tnp-submit {
    padding: 17px 27px;
    font-size: 20px;
    border: none;
    border-radius: 100px;
    background-color: #000000;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.subscribe-form form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
}



.tnp.tnp-subscription {
    width: 100% !important;
}

.subscribe-form form .tnp-field.tnp-field-email {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.subscribe-form form .tnp-field.tnp-field-email label {
    position: absolute;
    left: 27px;
}.tnp-field.tnp-field-email label {
    display: none;
}.slider-section .slide-item .image-caption-name {
    position: absolute;
    bottom: 0;
    right: 30px;
    bottom: 30px;
    background: #f08b21;
    padding: 7px 31px;
    border-radius: 100px;
    font-size: 12px;
    color: #fff;
}.slider-section .slick-dots {
    bottom: 30px;
    display: none !important;
}

.newsletter-section  input#tnp-1 {
    flex: 1;
    min-width: 280px;
    background: #e8e2d9;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 1rem;
    height: 62px;
}

.newsletter-section p {
    font-size: 46px !important;
    font-weight: 700 !important;
    margin: 0;
    font-family: "alfabet", sans-serif;
    /* font-family: "degular-display", sans-serif !important; */
    text-align: right;
}



.newsletter-section input.tnp-submit {
    color: white;
    border: none;
    background:#000;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
}

.newsletter-wrapper form {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: end;
    width: 100%;
}



.newsletter-wrapper .tnp.tnp-subscription {
    justify-content: end !important;
    display: flex !important;
    margin-right: 0;
}














 .privacy-policy-wrapper {
     
      font-weight: 400;
      background-color: #fff;
      color: #1a1a1a;
      min-height: 100vh;
    }

    .privacy-policy-wrapper * {
      box-sizing: border-box;
    }

    /* ===== HERO ===== */
   .privacy-policy-wrapper .pp-hero {
    background: #fff;
    padding: 60px 40px 0px;
    position: relative;
}

    .privacy-policy-wrapper .pp-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #f08b21;
      margin-bottom: 16px;
    }

  .privacy-policy-wrapper .pp-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 100px);
    line-height: 1.08;
    color: #111;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    padding-top: 50px;
}

    .privacy-policy-wrapper .pp-hero h1 em {
      font-style: normal;
      color: #f08b21;
    }

  .privacy-policy-wrapper .pp-hero-sub {
    font-size: 19px;
    color: #666;
    max-width: 100%;
    line-height: 1.75;
    margin-bottom: 0;
    text-align: center;
}

    .privacy-policy-wrapper .pp-hero-sub a {
      color: #f08b21;
      text-decoration: none;
      border-bottom: 1px solid rgba(240,139,33,0.3);
    }

    .privacy-policy-wrapper .pp-updated {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.74rem;
      color: #aaa;
      margin-top: 22px;
      border: 1px solid #eee;
      padding: 5px 14px;
      border-radius: 100px;
    }

    .privacy-policy-wrapper .pp-updated i {
      color: #f08b21;
      font-size: 0.68rem;
    }

    /* ===== TAB NAV ===== */
   .privacy-policy-wrapper .pp-tab-wrapper {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    width: 1000px;
    margin: 0 auto;
}

    .privacy-policy-wrapper .pp-tabs {
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .privacy-policy-wrapper .pp-tabs::-webkit-scrollbar {
      display: none;
    }

.privacy-policy-wrapper .pp-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 16px 22px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.01em;
}

    .privacy-policy-wrapper .pp-tab-btn i {
      font-size: 0.78rem;
    }

    .privacy-policy-wrapper .pp-tab-btn:hover {
      color: #333;
    }

    .privacy-policy-wrapper .pp-tab-btn.active {
      color: #f08b21;
      border-bottom-color: #f08b21;
    }

    /* ===== MAIN CONTENT ===== */
    .privacy-policy-wrapper .pp-main {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0px 40px 50px;
    }

    /* ===== SECTION PANELS ===== */
    .privacy-policy-wrapper .pp-section {
      display: none;
      animation: ppFadeIn 0.3s ease;
    }

    .privacy-policy-wrapper .pp-section.active {
      display: block;
    }

    @keyframes ppFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ===== SECTION HEADER ===== */
   .privacy-policy-wrapper .pp-sec-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 11px;
    padding-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

    .privacy-policy-wrapper .pp-sec-icon {
      width: 50px;
      height: 50px;
      background: rgba(240,139,33,0.08);
      border: 1px solid rgba(240,139,33,0.18);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .privacy-policy-wrapper .pp-sec-icon i {
      font-size: 1.15rem;
      color: #f08b21;
    }

    .privacy-policy-wrapper .pp-sec-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.75rem;
      color: #111;
      margin-bottom: 5px;
      letter-spacing: -0.7px;
    }

    .privacy-policy-wrapper .pp-sec-meta {
      font-size: 0.76rem;
      color: #bbb;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .privacy-policy-wrapper .pp-sec-meta i {
      color: #f08b21;
      font-size: 0.68rem;
    }

    /* ===== ARTICLE ===== */
    .privacy-policy-wrapper .pp-article > p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .privacy-policy-wrapper .pp-article a {
      color: #f08b21;
      text-decoration: none;
      border-bottom: 1px solid rgba(240,139,33,0.3);
      transition: border-color 0.2s;
    }

    .privacy-policy-wrapper .pp-article a:hover {
      border-bottom-color: #f08b21;
    }

    /* ===== SECTION HEADINGS ===== */
    .privacy-policy-wrapper .pp-article h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: #111;
      margin: 38px 0 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.2px;
    }

    .privacy-policy-wrapper .pp-article h2 .pp-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      background: #f08b21;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      border-radius: 6px;
      flex-shrink: 0;
    }

    .privacy-policy-wrapper .pp-article .pp-sub-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #222;
      margin: 16px 0 8px;
    }

    /* ===== LIST ===== */
    .privacy-policy-wrapper .pp-list {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
    }

    .privacy-policy-wrapper .pp-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.92rem;
      color: #555;
      padding: 9px 0;
      border-bottom: 1px solid #f5f5f5;
      line-height: 1.65;
    }

    .privacy-policy-wrapper .pp-list li:last-child {
      border-bottom: none;
    }

    .privacy-policy-wrapper .pp-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: #f08b21;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 8px;
    }

    /* ===== CALLOUT ===== */
    .privacy-policy-wrapper .pp-callout {
      background: #fffaf4;
      border: 1px solid #fde5c0;
      border-left: 3px solid #f08b21;
      border-radius: 10px;
      padding: 18px 22px;
      margin: 20px 0;
    }

    .privacy-policy-wrapper .pp-callout p {
      margin: 0;
      font-size: 0.9rem;
      color: #666;
      line-height: 1.7;
    }

    .privacy-policy-wrapper .pp-callout strong {
      color: #f08b21;
    }

    /* ===== TOOL GRID ===== */
    .privacy-policy-wrapper .pp-tool-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
      gap: 12px;
      margin: 14px 0;
    }

    .privacy-policy-wrapper .pp-tool-card {
      background: #fafafa;
      border: 1px solid #ebebeb;
      border-radius: 10px;
      padding: 14px 16px;
      display: flex;
      align-items: flex-start;
      gap: 11px;
      transition: border-color 0.2s;
    }

    .privacy-policy-wrapper .pp-tool-card:hover {
      border-color: rgba(240,139,33,0.35);
    }

    .privacy-policy-wrapper .pp-tool-card i {
      color: #f08b21;
      font-size: 1rem;
      margin-top: 1px;
      flex-shrink: 0;
    }

    .privacy-policy-wrapper .pp-tool-card span {
      font-size: 0.84rem;
      color: #666;
      line-height: 1.5;
    }

    /* ===== COOKIE TABLE ===== */
    .privacy-policy-wrapper .pp-cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0;
      font-size: 0.88rem;
    }

    .privacy-policy-wrapper .pp-cookie-table thead tr {
      background: #fafafa;
      border-bottom: 2px solid #eee;
    }

    .privacy-policy-wrapper .pp-cookie-table th {
      text-align: left;
      padding: 11px 16px;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #f08b21;
    }

    .privacy-policy-wrapper .pp-cookie-table td {
      padding: 12px 16px;
      color: #666;
      border-bottom: 1px solid #f2f2f2;
      vertical-align: top;
      line-height: 1.55;
    }

    .privacy-policy-wrapper .pp-cookie-table tr:last-child td {
      border-bottom: none;
    }

    .privacy-policy-wrapper .pp-cookie-table tr:hover td {
      background: #fffaf4;
    }

    .privacy-policy-wrapper .pp-type-badge {
      display: inline-block;
      padding: 3px 10px;
      background: rgba(240,139,33,0.10);
      color: #f08b21;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 500;
    }

    /* ===== CONTACT STRIP ===== */
    .privacy-policy-wrapper .pp-contact-strip {
      background: #fafafa;
      border: 1px solid #ebebeb;
      border-radius: 12px;
      padding: 26px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .privacy-policy-wrapper .pp-contact-strip h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.98rem;
      color: #111;
      margin-bottom: 4px;
    }

    .privacy-policy-wrapper .pp-contact-strip p {
      font-size: 0.83rem;
      color: #999;
      margin: 0;
    }

    .privacy-policy-wrapper .pp-contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f08b21;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.84rem;
      padding: 11px 22px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }

    .privacy-policy-wrapper .pp-contact-btn:hover {
      background: #e07a10;
      transform: translateY(-1px);
      color: #fff;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
		
     .privacy-policy-wrapper .pp-hero {
        padding: 40px 20px 0px;
    }
      .privacy-policy-wrapper .pp-tab-wrapper { padding: 0 16px; }
    .privacy-policy-wrapper .pp-main {
        padding: 5px 20px 20px;
    }
      .privacy-policy-wrapper .pp-sec-header { flex-direction: column; gap: 12px; }
      .privacy-policy-wrapper .pp-contact-strip { flex-direction: column; align-items: flex-start; }
		nav.pp-tab-wrapper {
    width: 100% !important;
}    .privacy-policy-wrapper .pp-tabs {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        flex-direction: row;
        gap: 0 !important;
        overflow: scroll;
    }.privacy-policy-wrapper .pp-hero-sub {
    font-size: 14px;
 
}.privacy-policy-wrapper .pp-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 100px);
    line-height: 1.08;
    color: #111;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    padding-top: 10px;
}
    }


.page-id-717 h1.entry-title {
    display: none;
}

.page-id-717 section.pp-hero {
    padding-top: 0 !important;
}

.page-id-717 .ast-plain-container.ast-no-sidebar div#primary {
    padding-top: 0 !important;
    margin-top: 0 !important; margin-bottom: 0 !important;
}
.privacy-policy-wrapper .pp-sec-meta {
  
    display: none;
}

.copyright {
    text-align: right;
    display: flex;
    justify-content: end;
    width: 100%;
}body.wp-singular.page-template-default.page.page-id-717  #primary {
        margin-top: 60px;
        margin-bottom: 0 !important;
    }