/* Reset default margins and paddings */
        * {
            margin: 0;
            padding: 0;
          
        }

        /* Full width and prevent horizontal scrolling */
        body {
            width: 100%;
            overflow-x: hidden;
            font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif !important;
        }

        html {
            font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif !important;
        }

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #212529;
  --heading-color: #2d465e; 
  --accent-color: #FF5F1F; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
}


:root {
  --nav-color: #212529;  
  --nav-hover-color: #FF5F1F; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #FF5F1F; 
}



.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #FF5F1F;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #FF5F1F;
  --contrast-color: #ffffff;
}


:root {
  scroll-behavior: smooth;
}
      /* Custom Pink Button Styling */
      .get-started-btn {
            display: inline-block;
            background: linear-gradient(to top, #FF5F1F, #f49874);
            color: white;
            padding: 5px 20px;
            border-radius: 15px;
            font-size: 16px;
            font-weight: bold;
            width: 90px;
            height: 40px;
            transition: 0.3s ease-in-out;
            
        }

        /* Hover Effect */
        .get-started-btn:hover {
            background-color: #ffffff; /* Darker Pink */
           
        }

        /* Mobile Responsive - Center Button */
        @media (max-width: 768px) {
            .get-started-btn {
                display: block;
                text-align: center;
                padding: 12px 0;
                margin-left: 10px;
                color: #fff;
                width: fit-content;
            }
        }
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: black;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}


.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}
.gradient-text{
    background: linear-gradient(to right, #fd1d1d, #FF5F1F, #f89670);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    
    font-family: "Gotham-black";
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  margin-top: 40px;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}
.container-s {
            max-width: 800px;
            margin: auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }

        .feature-s {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-bottom: 1px solid #ddd;
        }

        .feature-s:last-child {
            border-bottom: none;
        }

        .icon-s {
            background: #FF5F1F;
            padding: 10px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
        }

        .icon-s img {
            width: 30px;
            height: 30px;
        }

        .text {
            flex: 1;
        }

        .text h3 {
            margin: 0;
            font-size: 18px;
            color: #333;
        }

        .text p {
            margin: 5px 0 0;
            font-size: 14px;
            color: #666;
        }

        @media (max-width: 600px) {
            .feature-s {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        .button-container {
            display: flex;
            gap: 15px;
        }

        .btn {
            text-decoration: none;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn.white {
            background-color: white;
            color: #FF5F1F;
            border: 2px solid #FF5F1F;
        }

        .btn.red {
            background-color: #FF5F1F;
            color: white;
        }

        .btn:hover {
            opacity: 0.8;
        }

        @media (max-width: 600px) {
            .button-container {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 80%;
            }
        }
        

    .career-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
            max-width: 1200px;
            margin: auto;
        }

        .career-content {
            max-width: 50%;
        }

        /* Title */
        .career-title {
            color: #FF5F1F;
            font-weight: bold;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        /* Heading */
        .career-heading {
            font-size: 36px;
            color: black;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out;
        }

        /* Description */
        .career-text {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            animation: fadeInUp 1.5s ease-out;
        }

        /* Job Opportunities Button */
        .job-btn {
            display: inline-block;
            padding: 12px 20px;
            background: #FF5F1F;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 8px;
            margin-top: 20px;
            transition: all 0.3s ease-in-out;
            box-shadow: 0px 5px 10px rgba(214, 51, 132, 0.3);
        }

        .job-btn:hover {
            background: #FF5F1F;
            box-shadow: 0px 8px 15px rgba(214, 51, 132, 0.5);
            transform: scale(1.05);
        }

        /* Stats Box */
        .stats-box {
            display: flex;
            background: #fce4ec;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            gap: 20px;
            justify-content: space-around;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        }

        /* Individual Stats */
        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #FF5F1F;
            text-transform: uppercase;
            animation: countUp 2s ease-in-out;
        }

        .stat-text {
            font-size: 14px;
            color: #555;
            text-transform: uppercase;
        }

        /* Right Side - Image with Border */
        .career-image-container {
            position: relative;
            max-width: 45%;
        }

        .career-image-container::before {
            content: "";
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            background: rgba(240, 98, 66, 0.5); /* Light Pink */
            border-radius: 20px;
            z-index: -1;
            box-shadow: 0px 10px 20px rgba(255, 105, 180, 0.3);
        }

        .career-image img {
            width: 100%;
            border-radius: 20px;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .career-image img:hover {
            transform: scale(1.05);
            box-shadow: 0px 10px 20px rgba(255, 105, 180, 0.5);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media screen and (max-width: 992px) {
            .career-section {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .career-content {
                max-width: 100%;
            }

            .career-image-container {
                max-width: 100%;
                margin-top: 20px;
            }

            .stats-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 10px;
            }

            .job-btn {
                display: block;
                width: fit-content;
                margin: 20px auto;
            }
        }
     /* Connect People Section */
 /* Connect People Section */
        .connect-people {
            position: relative;
            width: 100%;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(to right, rgba(254, 166, 72, 0.7), #FF5F1F), 
                        url('https://st4.depositphotos.com/2572561/22245/i/450/depositphotos_222458878-stock-photo-happy-successful-business-man-raises.jpg') center/cover;
            color: white;
            padding: 10px 0;
            animation: fadeIn 1.5s ease-in-out;
        }

        .connect-content {
            max-width: 400px;
            padding: 10px 20px;
            animation: slideUp 1.5s ease-out;
        }

        .connect-people h1 {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            color: black;
            margin-bottom: 10px;
        }

        .connect-people h1 span {
            color: #fff0f5;
        }

        .connect-people p {
            font-size: 14px;
            margin: 10px 0;
            opacity: 0.9;
        }

        /* CTA Button */
        .connect-people .cta-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 6px 16px;
            background: #FF5F1F;
            color: white;
            font-size: 14px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease-in-out;
            box-shadow: 0px 4px 10px rgba(254, 114, 27, 0.5);
        }

        .connect-people .cta-btn:hover {
            background: #FF5F1F;
            transform: scale(1.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(40px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .connect-people {
                height: auto;
                padding: 10px 0;
            }

            .connect-content {
                max-width: 95%;
                padding: 5px 5px;
            }

            .connect-people h1 {
                font-size: 18px;
            }

            .connect-people p {
                font-size: 12px;
            }

            .connect-people .cta-btn {
                font-size: 12px;
                padding: 6px 10px;
            }
        }
     /* Section Styling */
        .for-companies {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
          
            padding: 60px 10%;
            color: #FF5F1F;
        }

        .content {
            flex: 1;
            max-width: 600px;
            animation: slideLeft 1s ease-in-out;
        }

        .content h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            
            
        }

        .content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.6;
            color: black;
        }

        .features {
            margin-top: 20px;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature img {
            width: 30px;
            margin-right: 10px;
        }

        /* Call-to-Action Button */
        .cta-btn {
            display: inline-block;
            padding: 12px 25px;
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            background: #FF5F1F;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease;
            text-decoration: none;
        }

        .cta-btn:hover {
            background: #FF5F1F;
            transform: scale(1.1);
        }

        /* Image Section */
        .image-container {
            flex: 1;
            text-align: center;
            animation: slideRight 1s ease-in-out;
        }

        .image-container img {
            width: 100%;
            max-width: 450px;
            border-radius: 10px;
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
        }

        /* Animations */
        @keyframes slideLeft {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideRight {
            from {
                transform: translateX(50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .for-companies {
                flex-direction: column;
                text-align: center;
            }

            .feature {
                justify-content: center;
            }

            .cta-btn {
                font-size: 1rem;
                padding: 10px 20px;
            }
        }
.banner-main { margin: 30px 0; 
    
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius:10px;
  overflow: auto hidden;
  scroll-snap-type: inline mandatory;
  overscroll-behavior-inline: contain;
}

.slider-item {
  position: relative;
  min-width: 100%;
  max-height: 450px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

.slider-item .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.banner-content {
  background: hsla(0, 0%, 100%, 0.8);
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 20px 25px;
  border-radius: 10px;
}

.banner-subtitle {
  color: #FF5F1F;
  font-size: 0.875rem;
  font-weight: 500;

  letter-spacing: 2px;
  margin-bottom: 10px;
}

.banner-title {
  color: hsl(0, 0%, 13%);
  font-size: 1.563rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.banner-text { display: none; }

.banner-btn {
  background: hsl(353, 100%, 78%);
  color: white;
  width: max-content;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  transition:  0.2s ease;
}

.banner-btn:hover { background:black;
}

 .for-college {
            padding: 50px 0;
        }
        .for-college h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #000; /* Black Text */
            animation: fadeInUp 1s ease-in-out;
        }
        .for-college p {
            color: #333;
            font-size: 1.1rem;
            animation: fadeIn 1.2s ease-in-out;
        }
        
        /* Section Styling */
        .college-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .college-text {
            max-width: 600px;
        }
        .college-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
            animation: fadeInLeft 1.5s ease-in-out;
        }

        /* Card Styling */
        .info-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1.5s ease-in-out;
        }
        .info-card:hover {
            transform: translateY(-10px);
        }
        .info-card h5 {
            font-weight: bold;
            color: #000;
        }

        /* Features */
        .feature {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        .feature-icon {
            width: 40px;
            height: 40px;
            background: #FF5F1F;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border-radius: 50%;
            margin-right: 10px;
        }

        /* Button */
        .btn-primary {
            background: #FF5F1F;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: bold;
            transition: 0.3s;
        }
        .btn-primary:hover {
            background: #FF5F1F;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .college-content {
                flex-direction: column;
                text-align: center;
            }
            .feature {
                justify-content: center;
            }
        }
.our-skill {
          
          
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container-skill {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #191919, #000000);
            color: white;
            padding: 40px;
            border-radius: 10px;
            width: 900px;
            justify-content: space-between;
            position: relative;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            
        }
        .content-skill {
            width: 55%;
        }
        .heading-skill {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            color:#FF5F1F;
        }
        .subheading-skill {
            font-size: 20px;
            margin-bottom: 20px;
        }
        .skill {
            margin: 15px 0;
            text-align: left;
        }
        .skill-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .skill-p{
            color: #FF5F1F;
            font-size: smaller;
            position: absolute;
            top: 10%;
            left: 40%;
            transform: translateX(-50%);
            font-size: 15px;
            font-weight: bold;
            color: white;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            border-radius: 10px;
        }
        .progress-bar {
            width: 100%;
            height: 10px;
            background: rgba(244, 72, 72, 0.3);
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }
        .progress-skill {
            height: 100%;
            background: #FF5F1F;
            width: 0;
            border-radius: 5px;
            transition: width 2s ease-in-out;
        }
        .percentage-skill {
            position: absolute;
            right: 10px;
            top: -20px;
            font-size: 12px;
            color: white;
        }
        .image-container-skill {
            width: 40%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-left: 20px;
        }
        .image-container-sklii img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .container-skill {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            .content-skill {
                width: 100%;
            }
            .image-container-skill {
                width: 100%;
                padding: 0;
                margin-top: 20px;
            }
            .image-container-skill img {
                width: 80%;
            }
            .percentage-skill {
                right: 50%;
                left: 50%;
                transform: translateX(-50%);
            }
            .skill-p {
                top: 54%;
                left: 50%;
                font-size: 8px;
                
            }
        }
/* FAQ Section */
        .faq-section {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background: white;  /* Soft Pink */
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
        }

        .faq-header {
            text-align: center;
            font-size: 28px;
            color: #FF5F1F; /* Darker Pink */
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* FAQ Item */
        .faq-item {
            background: #FF5F1F;
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        .faq-item:hover {
            background: #f09b7a;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            color: rgb(255, 255, 255);
        }

        .faq-answer {
            font-size: 16px;
            color: #555;
            display: none;
            margin-top: 10px;
            padding-left: 5px;
            line-height: 1.5;
            animation: fadeIn 0.3s ease-in-out;
        }

        /* Expand/Collapse Icon */
        .icon {
            font-size: 20px;
            color: #FF5F1F;
            transition: transform 0.3s ease;
        }

        .rotate {
            transform: rotate(180deg);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-section {
                max-width: 90%;
                padding: 15px;
            }

            .faq-header {
                font-size: 24px;
            }

            .faq-question {
                font-size: 16px;
            }
        }

        /* Fade In Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
        .hero-find {
            position: relative;
            width: 100%;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: left;
            padding: 10px 0;
            background: linear-gradient(rgba(254, 136, 72, 0.7), rgba(253, 71, 16, 0.7)), url("https://static.vecteezy.com/system/resources/previews/008/937/917/non_2x/business-man-using-modern-digital-tablet-while-coworker-interacting-in-the-background-in-the-office-teamwork-meeting-and-partnership-concept-free-photo.jpg");
            background-size: cover;
            background-position: center;
            color: white;
            animation: fadeIn 1.5s ease-in-out;
        }
        .hero-content-find {
            max-width: 400px;
            padding: 10px 20px;
        }
        .hero-find h1 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .hero-find p {
            font-size: 14px;
            margin: 10px 0;
        }
        .btn-find {
            padding: 6px 16px;
            font-size: 14px;
            border-radius: 4px;
        }
        @media (max-width: 768px) {
            .hero-find {
                height: auto;
                padding: 10px 0;
            }
            .hero-content-find {
                max-width: 95%;
                padding: 5px 5px;
            }
            .hero-find h1 {
                font-size: 18px;
            }
            .hero-find p {
                font-size: 12px;
            }
            .btn-find {
                font-size: 12px;
                padding: 6px 10px;
            }
        }
   .footer {
            background: linear-gradient(to right, #272526, #0f0c0d);
            color: white;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            justify-items: center;
            align-items: start;
            text-align: center;
            animation: fadeIn 1.5s ease-in-out;
            position: relative;
        }
        .footer > div {
            margin: 0;
            width: 100%;
        }
        .footer-bottom {
            grid-column: 1 / -1;
            margin-top: 30px;
            text-align: center;
        }
        .footer h3 {
            margin-bottom: 15px;
            font-size: 22px;
            color: #FF5F1F;
        }
        .footer p, .footer a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .social-icons {
            margin-top: 10px;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: white;
            color: #FF5F1F;
            border-radius: 50%;
            margin: 5px;
            transition: 0.3s;
            animation: bounce 2s infinite;
            font-size: 20px;
            text-align: center;
        }
        .social-icons a i {
            line-height: 40px;
        }
        .social-icons a:hover {
            background: #FF5F1F;
            color: white;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        @media (max-width: 900px) {
            .footer {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 30px 10px;
            }
            .footer > div {
                margin-bottom: 20px;
            }
            .footer-bottom {
                margin-top: 20px;
            }
        }
   

       
/* Force all text elements to use the same font family */
body, html, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, .btn, .card-heading, .card-heading-main, .footer-logo, .navmenu, .get-started-btn, .gradient-text, .career-heading, .heading-skill, .subheading-skill, .footer h3, .footer p, .footer a {
    font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif !important;
}

.testimonial-section-bg {
    background: linear-gradient(135deg, #fff5ee 0%, #ffe0d1 50%, #FF5F1F 100%);
    padding: 60px 0;
}
.testimonial-card .testimonial-name, .swap-head {
    color: #FF5F1F;
    font-weight: bold;
}
.swiper-button-prev, .swiper-button-next {
    color: #FF5F1F;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255,95,31,0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    background: #ffe0d1;
}

/* Orange theme for testimonial cards */
.swiper-slide,
.testimonial-card {
    background: linear-gradient(135deg, #fff5ee 60%, #ffe0d1 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255,95,31,0.08);
    border: 1px solid #ffe0d1;
}

       