/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #66FCF1;
    --primary-color-rgb: 102, 252, 241;
    --secondary-color: #45A29E;
    --dark-color: #0B0C10;
    --dark-light-color: #1F2833;
    --light-color: #C5C6C7;
    --white-color: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden;
   scroll-behavior: smooth;
}


body {
    font-family: var(--font-primary);
    color: var(--light-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--white-color);
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-padding {
    padding: 100px 0;
}

.bg-dark-light {
    background-color: var(--dark-light-color);
}

.highlight {
    color: var(--primary-color);
}

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--dark-color);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
}

.btn-light {
    background-color: var(--white-color);
    color: var(--dark-color);
    border: none;
}

.btn-light:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 800;
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-color);
    max-width: 700px;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 80px;
    height: 80px;
}

#loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 2s linear infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 200;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -200;
    }
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    opacity: 0.7;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    opacity: 0.5;
}

/* Hide cursor and follower on mobile */
@media screen and (max-width: 767px) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background-color: transparent;
}

#header.header-scrolled {
    background-color: rgba(11, 12, 16, 0.9);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--white-color);
    font-family: var(--font-secondary);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--white-color);
    font-family: var(--font-secondary);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white-color);
    padding: 10px 15px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:before {
       content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover:before,
.navbar-dark .navbar-nav .nav-link.active:before {
      width: calc(23% - 30px);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}



.btn-sign-in {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color) !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    margin-left: 15px;
}

.btn-sign-in:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
}

.btn-sign-in:before {
    display: none;
}

/* Custom Css added  */
.logo-icon {
    height: 32px;
    width: auto;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .logo-icon {
           height: 62px;
    }
}
/*--------------------------------------------------------------
# Notification Banner Styles
--------------------------------------------------------------*/
.notification-banner {
     position: relative;
    top: 30px;
    left: 15%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: 8px 20px;
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.3);
    overflow: hidden;
    min-width: 280px;
    height: 62px;
    z-index: 1000;
}

.notification-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-swipe {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: swipeAnimation 9s infinite;
  z-index: -999;
}

.notification-messages {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.notification-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.notification-message.active {
  opacity: 1;
  transform: translateY(0);
}

.notification-text {
  color: var(--dark-color);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  margin-right: 15px;
  white-space: nowrap;
}

.notification-btn {
    z-index: 1000;
  background-color: var(--white-color);
  color: var(--dark-color);
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notification-btn:hover {
  background-color: var(--dark-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Swipe Animation */
@keyframes swipeAnimation {
  0% {
    left: -100%;
  }
  8% {
    left: 100%;
  }
  33.33% {
    left: -100%;
  }
  41.33% {
    left: 100%;
  }
  66.66% {
    left: -100%;
  }
  74.66% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

/* Message Cycling Animation */
.notification-message:nth-child(1) {
  animation: messageDisplay 9s infinite;
}

.notification-message:nth-child(2) {
  animation: messageDisplay 9s infinite 3s;
}

.notification-message:nth-child(3) {
  animation: messageDisplay 9s infinite 6s;
}

@keyframes messageDisplay {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  35% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .notification-banner {
      display: none;
   
  }

  .notification-text {
    font-size: 13px;
  }

  .notification-btn {
    font-size: 11px;
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
  .notification-banner {
       display: none;
  }

  .notification-text {
    font-size: 12px;
    margin-right: 10px;
  }

  .notification-btn {
    font-size: 10px;
    padding: 4px 10px;
  }
}

@media (max-width: 575px) {
  .notification-banner {
     display: none;
  }

  .notification-text {
    font-size: 11px;
  }

  .notification-btn {
    font-size: 9px;
    padding: 3px 8px;
  }
}


/*-------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
}
.form-control{
    color: white;
}
.form-control:focus{
    color: white;
}


.hero-form .form-control {
    height: 60px;
    border-radius: 50px 0 0 50px;
    padding: 0 30px;
    font-size: 16px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.hero-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-form .btn {
    border-radius: 0 50px 50px 0;
    height: 60px;
    padding: 0 30px;
}
.hero-img-container {
    position: relative;
    height: 500px;
}


@media screen and (max-width: 767px) {
    .container-mobile {
        position: absolute;
        top: 16%;
    }
}


.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-2 {
    top: 10%;
    right: 30%;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 30%;
    right: 20%;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 10%;
    left: 30%;
    animation-delay: 1.5s;
}

.icon-5 {
    bottom: 40%;
    left: 10%;
    animation-delay: 2s;
}

.icon-6 {
    top: 40%;
    right: 10%;
    animation-delay: 2.5s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--dark-light-color), transparent);
}

.stats-row {
    margin-top: 50px;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stat-title {
    font-size: 16px;
    color: var(--light-color);
    margin: 0;
}

/* Circular path for icons */
.circle-path {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    pointer-events: none;
}

/* Floating icons */
.icon-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
    animation: float 3s ease-in-out infinite;
}

#icon1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

#icon2 {
    top: 10%;
    right: 30%;
    animation-delay: 0.5s;
}

#icon3 {
    bottom: 30%;
    right: 20%;
    animation-delay: 1s;
}

#icon4 {
    bottom: 10%;
    left: 30%;
    animation-delay: 1.5s;
}

#icon5 {
    bottom: 40%;
    left: 10%;
    animation-delay: 2s;
}

#icon6 {
    top: 40%;
    right: 10%;
    animation-delay: 2.5s;
}

#icon7 {
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

#icon8 {
    bottom: 50%;
    right: 50%;
    animation-delay: 3.5s;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-box {
    background-color: var(--dark-color);
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box:hover:before {
    opacity: 0.1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 28px;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    transform: rotateY(360deg);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.process-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    z-index: 1;
    position: relative;
    margin: 0 30px;
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
}

.process-content {
    background-color: var(--dark-color);
    padding: 30px;
    border-radius: 15px;
    width: calc(50% - 70px);
    position: relative;
}

.process-content:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--dark-color);
    transform: rotate(45deg) translateY(-50%);
}

.process-item:nth-child(odd) .process-content:before {
    right: -10px;
}

.process-item:nth-child(even) .process-content:before {
    left: -10px;
}

.process-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-description {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.project-filter {
    margin-bottom: 40px;
    text-align: center;
}

.filter-btn {
    background-color: transparent;
    border: none;
    color: var(--light-color);
    padding: 10px 20px;
    margin: 0 5px 10px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
  
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
}

.project-box {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}


.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
  
    width: 100%;
}


.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
   
}

.project-box:hover .project-overlay {
    opacity: 1;
}

.project-link, .project-popup {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--dark-color);
    font-size: 18px;
   
    opacity: 0;
   
}



.project-link:hover, .project-popup:hover {
    background-color: var(--dark-color);
    color: var(--primary-color);
}

.project-info {
    padding: 20px;
    text-align: center;
}

.project-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.project-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-slider {
    padding: 0 50px;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background-color: var(--dark-color);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: var(--dark-color);
    transform: rotate(45deg);
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
   
}

.author-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-position {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 0;
}
/* Make slick dots container behave like a flexbox row */
.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px; /* spacing between buttons */
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

/* Remove default <li> layout styling */
.slick-dots li {
    display: contents; /* Makes <li> not interfere with layout */
}
 /* Default button style */
.slick-dots button[role="tab"] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #66fcf1;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Active dot styling */
.slick-dots button[role="tab"][aria-selected="true"] {
    background-color: #66fcf1;
    color: #fff;
    transform: scale(1.1);
}

/* Extra small screens */
@media (max-width: 576px) {
    .slick-dots button[role="tab"] {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: var(--dark-color);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--dark-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
}

.about-experience h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--dark-color);
}

.about-experience p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.about-text {
    margin-bottom: 20px;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-box {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 60px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta-box:before {
       z-index: -999;
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--dark-color);
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--dark-color);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-text p {
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--dark-color);
    padding: 30px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 55px;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    height: auto;
    padding: 20px;
}

/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/
.map-section {
    position: relative;
}

.map-container {
    height: 450px;
    width: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--white-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-newsletter .form-control {
    height: 50px;
    border-radius: 50px 0 0 50px;
    padding: 0 20px;
}

.footer-newsletter .btn {
    border-radius: 0 50px 50px 0;
    height: 50px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin-bottom: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-bottom-links li {
    display: inline-block;
    margin-left: 20px;
}

.footer-bottom-links a {
    color: var(--light-color);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 996;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-color);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .hero-title {
        font-size: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .process-timeline:before {
        left: 40px;
    }
    
    .process-item {
        flex-direction: row !important;
    }
    
    .process-content {
        width: calc(100% - 150px);
    }
    
    .process-item:nth-child(odd) .process-content:before,
    .process-item:nth-child(even) .process-content:before {
        left: -10px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-img-container {
        margin-top: 50px;
    }
    
    .navbar-collapse {
        background-color: var(--dark-light-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .btn-sign-in {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    .cta-box {
        padding: 40px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .process-content {
        width: calc(100% - 130px);
    }
    
    .about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: -50px;
        margin-bottom: 30px;
    }
    
    .cta-box {
        padding: 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-box .btn {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin: 0 20px;
    }
    
    .process-content {
        width: calc(100% - 100px);
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-text {
        text-align: center;
    }
}

