*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    color: #1a202c;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.8rem 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    width: 250px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    width: 100%; 
    height: 30px;
    object-fit: contain;
}

.navbar-brand:hover img {
    transform: translateY(-3px) scale(1.05);
}

.logo-hover {
    transition: transform 0.3s ease;
    height: 50px !important;
}

.logo-hover:hover {
    transform: translateY(-3px);
}

/* Auth Buttons Styles */
.auth-buttons-container {
    display: flex;
    gap: 10px;
    position: relative;
    margin-right: 15px;
}

.auth-buttons-container::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 2px;
    background: linear-gradient(to bottom, #2563eb, #3b82f6);
    border-radius: 2px;
}

.btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-auth i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-auth:hover i {
    transform: scale(1.2);
}

.btn-auth:hover {
    transform: translateY(-3px);
}

.btn-login {
    background-color: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn-login:hover {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.2);
}

.btn-signup {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.btn-signup:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
    color:white;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

 
 

/* Language selector */
.dropdown-toggle {
    border: 1px solid rgba(37, 99, 235, 0.2);
    background-color: rgba(37, 99, 235, 0.05);
    color: #2563eb;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover, 
.dropdown-toggle:focus {
    background-color: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem !important;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    padding: 0.6rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    transform: translateX(3px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%232563eb" fill-opacity="0.03" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.8;
    z-index: 0;
}

/* Hero Slider Styles */
#heroSlider {
    position: relative;
    z-index: 1;
}

.carousel-inner {
    overflow: hidden;
}

.carousel-item {
    padding: 4rem 0;
}

.carousel-indicators {
    bottom: 20px;
    z-index: 5;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 10%;
    background-color: rgba(37, 99, 235, 0.3);
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: #2563eb;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 5;
}
 
.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: linear-gradient(45deg, #ff6b6b, #f06595);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
 
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.carousel-control-prev-icon,.carousel-control-next-icon{
    filter: invert(1);
}
/* Buton üzerine gelindiğinde hafif büyüme ve gölge derinleşmesi */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

/* İkonların boyut ve yerleşimi */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-repeat: no-repeat;
}

/* Sol ok için embed edilmiş SVG ikon (daha estetik çizgilerle) */
.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 010 .708L5.707 8l5.647 5.646a.5.5 0 01-.708.708l-6-6a.5.5 0 010-.708l6-6a.5.5 0 01.708 0z"/></svg>');
}

/* Sağ ok için embed edilmiş SVG ikon */
.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 000 .708L10.293 8 4.646 13.646a.5.5 0 00.708.708l6-6a.5.5 0 000-.708l-6-6a.5.5 0 00-.708 0z"/></svg>');
}

  
/* Hero Content and Image */
.hero-content {
    padding: 2rem;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    padding: 1.5rem;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-section .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-section .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

.hero-section .btn i {
    transition: transform 0.3s ease;
}

.hero-section .btn:hover i {
    transform: translateX(4px);
}

/* Image Container */
.hero-section .position-relative {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 100%;
    height: 0;
    padding-bottom: 90%; /* Biraz daha küçük */
    position: relative;
}

.hero-section .position-relative:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-gradient-overlay {
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Position utilities for badges */
.top-4 {
    top: 1rem;
}

.end-4 {
    right: 1rem;
}

.bottom-4 {
    bottom: 1rem;
}

.start-4 {
    left: 1rem;
}

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 3px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    width: fit-content
}

/* Notification */
.notification {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: bottom 0.3s ease;
    font-weight: 500;
}

.notification.show {
    bottom: 20px;
}

/* Utility Classes */
.text-primary {
    color: #2563eb !important;
}

.zoom-effect {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-effect:hover {
    transform: scale(1.05);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .carousel-item {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-image {
        padding: 1rem;
        padding-right: 0;
    }
    
    .hero-section .position-relative {
        padding-bottom: 80%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .carousel-item {
        padding: 2rem 0;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-section .position-relative {
        padding-bottom: 75%; /* Mobilde daha küçük görüntü */
        max-width: 90%;
        margin: 0 auto;
    }
    
    .d-flex.gap-3.mb-4 {
        justify-content: center;
    }
    
    .d-flex.align-items-center.gap-4.mt-5 {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (min-width: 1200px) {
    .hero-image {
        padding-right: 0;
        padding-left: 1rem;
    }
    
    .hero-content {
        padding-left: 0;
        padding-right: 2rem;
    }
    
    .hero-section .position-relative {
        padding-bottom: 85%; /* Büyük ekranlarda daha küçük */
    }
}

.container {
    max-width: 1320px;
    padding-right: 0;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding-right: 0;
    }
    
    .hero-section .position-relative {
        padding-bottom: 85%;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
        padding-right: 0;
    }
}

.hero {
    display: inline-block;
    position: relative;
    width: 400px;
    min-width: 400px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin: 30px;
    transition: all 0.4s ease;
  }
  
  .hero:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  /* Add margin at the bottom to make room for the info items */
  .project-card {
    margin-bottom: 50px;
  }
  
  .image {
    height: 71%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .hero:hover .image {
    transform: scale(1.05);
  }
  
  .text {
    background-image: linear-gradient(-20deg, #2563eb, #38bdf8);
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 75%;
    width: 108%;
    transform: skew(19deg, -9deg);
    z-index: 1;
    transition: all 0.4s ease;
  } 
  
  .hero:hover .text {
    background-image: linear-gradient(-20deg, #1e40af, #0ea5e9);
  }
  
  .logo {
    height: 48px;
    width: 48px;
    padding: 10px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    animation: button-anim 7s ease 0s infinite normal forwards;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .hero:hover .logo {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .logo img {
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .hero:hover .logo img {
    transform: rotate(10deg);
  }
  
  .main-text {
    position: absolute;
    color: #fff; 
    left: 100px;
    bottom: 26%;
    font-size: 21px;
    font-weight: 600;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .hero:hover .main-text {
    transform: translateX(5px);
  }
  
  /* Room types styles */
  .room-types {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 5px 0;
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .hero:hover .room-types {
    transform: translateY(-3px);
  }

  .room-type {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    padding: 1px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .room-type:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  /* Price range styles */
  .price-range {
    text-align: center;
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
  }
  
  .price-range p {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease; 
    padding: 8px 16px;
    border-radius: 8px; 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
    position: relative;
  }
  
  /* .price-range p::before {
    content: '₺';
    font-size: 14px;
    opacity: 0.8;
    margin-right: 2px;
  }
  
  .price-range p::after {
    content: '₺';
    font-size: 14px;
    opacity: 0.8;
    margin-left: 2px;
  }
   */

  .hero:hover .price-range {
    transform: translateY(-3px);
  }
  
  .hero:hover .price-range p {
    transform: scale(1.02);  
  }
  
  @media (max-width: 768px) {
    .price-range {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 15px;
    }
    
    .price-range p {
        padding: 6px 12px;
        font-size: 14px;
    }
  }

  /* Project Info Styles */
  .project-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11%;
    z-index: 3;
    transition: all 0.3s ease;
  }

  .hero:hover .project-info {
    bottom: 11%;
    transform: translateY(-3px);
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgb(235 244 254);
    padding: 4px 8px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .info-item:hover {
    transform: translateY(-2px);
    background-color: rgb(255 255 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .info-item i {
    font-size: 12px;
    color: rgb(37 99 235);
  }

  .info-item span {
    font-size: 12px;
    font-weight: 500;
    color: rgb(37 99 235);
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .project-info {
      flex-direction: column;
      align-items: center;
      gap: 8px;
      bottom: -25%;
    }
    
    .hero:hover .project-info {
      bottom: -22%;
    }
  }
   
  
  .projectHead{
      font-size: 44px; 
  }

  .hero{
    font-weight: 600; 
  }
  .first a:hover span{
    color:#0077B5 !important;
    
  }
  .second a:hover span{
    color:#0077B5 !important; 
  }

  .projectHeading {
    font-size: 36px;
    font-weight: 700;
    margin: 50px 0 30px;
    position: relative;
    display: inline-block;
    color: #2563eb;
  }
  
  .projectHeading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border-radius: 2px;
  }
  
  /* Projects Section */
  .projects-section {
    background-color: #f8fafc;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
  }

  
  /* Responsive adjustments for project cards */
  @media (max-width: 1200px) {
    .hero {
      width: 350px;
      min-width: 350px;
      height: 430px;
      margin: 20px;
    }
    
    .main-text {
      font-size: 22px;
    }
  }
  
  @media (max-width: 992px) {
    .hero {
      width: 320px;
      min-width: 320px;
      height: 400px;
      margin: 15px;
    }
    
    .main-text {
      font-size: 20px;
      left: 90px;
    }
    
    .logo {
      height: 40px;
      width: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      width: 100%;
      min-width: 280px;
      max-width: 400px;
      height: 430px;
      margin: 15px auto 30px;
    }
  }

/* Process Section Styles */
.process-section {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
    position: relative;
    overflow: hidden;
}

 

.process-card {
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
}

.process-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.process-card.bg-primary {
    background: linear-gradient(135deg, #1e3582, #2a4396) !important;
    box-shadow: 0 15px 30px rgba(30, 53, 130, 0.2);
}

.process-card.bg-light {
    background: linear-gradient(135deg, #f5f9ff, #e9f3ff) !important;
    box-shadow: 0 15px 30px rgba(30, 53, 130, 0.1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 53, 130, 0.3);
}

.process-card h2 {
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.process-card.animated h2 {
    transform: translateY(0);
    opacity: 1;
}

.process-card .text-info {
    color: #4ecdc4 !important;
    background-image: linear-gradient(135deg, #4ecdc4, #2ebfb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.process-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

.process-card.animated p {
    opacity: 0.9;
    transform: translateY(0);
}

.process-number {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 8rem;
    font-weight: 800;
    opacity: 0;
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
    transform: translateY(30px) scale(0.8);
}

.process-card.animated .process-number {
    opacity: 0.4;
    transform: translateY(0) scale(1);
}

.bg-primary .process-number {
    color: rgba(255, 255, 255, 0.2);
}

.bg-light .process-number {
    color: rgba(30, 53, 130, 0.1);
}

/* Add a glowing effect to the blue card */
.process-card.bg-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    transform: rotate(45deg);
    animation: glow 8s linear infinite;
    opacity: 0;
    z-index: 0;
}

.process-card.bg-primary:hover::before {
    opacity: 1;
}

/* Add a subtle wave effect to the light card */
.process-card.bg-light::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.4;
    transition: all 0.5s ease;
    z-index: 0;
}

.process-card.bg-light:hover::before {
    transform: translateY(-10px) scale(1.05);
}

/* Add icon before title */
.process-card .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}

.process-card.animated .icon-container {
    opacity: 1;
    transform: scale(1);
}

.process-card.bg-primary .icon-container {
    background: rgba(255, 255, 255, 0.15);
}

.process-card.bg-light .icon-container {
    background: rgba(30, 53, 130, 0.1);
}

.process-card .icon-container i {
    font-size: 28px;
    color: #fff;
}

.process-card.bg-light .icon-container i {
    color: #1e3582;
}

/* Animations */
@keyframes glow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .process-card {
        min-height: 320px;
    }
    
    .process-card h2 {
        font-size: 2.5rem;
    }
    
    .process-number {
        font-size: 6rem;
        bottom: 10px;
        right: 20px;
    }
    
    .process-card .icon-container {
        width: 50px;
        height: 50px;
    }
    
    .process-card .icon-container i {
        font-size: 24px;
    }
}


/* Footer Styles */

    /* Footer Styles */
    .footer-section {
        background: linear-gradient(135deg, rgba(41, 121, 255, 0.92), rgba(21, 101, 192, 0.92));
        color: white;
        padding: 100px 0 0;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    .footer-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

    .footer-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
        opacity: 0.1;
        pointer-events: none;
    }

    .footer-brand {
        color: rgba(255, 255, 255, 0.95);
        position: relative;
        z-index: 1;
    }

    .footer-logo {
        max-width: 230px;
        height: auto;
        filter: brightness(0) invert(1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        margin-bottom: 25px;
        opacity: 0.95;
        position: relative;
    }

    .footer-logo::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
        transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .footer-logo:hover {
        transform: scale(1.02) translateY(-2px);
        filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        opacity: 1;
    }

    .footer-logo:hover::after {
        width: 100%;
    }

    .footer-brand p {
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 30px;
        font-weight: 300;
        letter-spacing: 0.2px;
        position: relative;
        padding-left: 15px;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
    }

    .footer-title {
        color: white;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 12px;
        letter-spacing: 0.3px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
        border-radius: 1px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.2px;
        position: relative;
        padding-left: 15px;
    }

    .footer-links a::before {
        content: '→';
        margin-right: 8px;
        opacity: 0;
        transform: translateX(-8px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        color: rgba(255, 255, 255, 0.8);
        position: absolute;
        left: 0;
    }

    .footer-links a:hover {
        color: white;
        transform: translateX(3px);
        font-weight: 400;
        padding-left: 20px;
    }

    .footer-links a:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 22px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        line-height: 1.6;
        font-weight: 300;
        letter-spacing: 0.2px;
        position: relative;
        padding-left: 45px;
    }

    .footer-contact li i {
        font-size: 20px;
        margin-right: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 3px;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        background: rgba(255, 255, 255, 0.08);
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .footer-contact li:hover i {
        transform: scale(1.05) translateY(-2px) rotate(5deg);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .social-links {
        display: flex;
        gap: 16px;
        margin-top: 30px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        opacity: 0;
        transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .social-link i {
        position: relative;
        z-index: 1;
        font-size: 18px;
        transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        color: white;
    }

    .social-link:hover i {
        transform: scale(1.1);
    }

    .social-link:hover::before {
        opacity: 1;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 0;
        margin-top: 80px;
        position: relative;
        z-index: 1;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
        font-weight: 300;
        letter-spacing: 0.2px;
    }

    .footer-bottom a {
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 13px;
        position: relative;
        font-weight: 300;
        letter-spacing: 0.2px;
    }

    .footer-bottom a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.5);
        transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .footer-bottom a:hover {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 400;
    }

    .footer-bottom a:hover::after {
        width: 100%;
    }

    @media (max-width: 768px) {
        .footer-section {
            padding: 80px 0 0;
            margin-top: 80px;
        }

        .footer-brand {
            text-align: center;
        }

        .footer-logo {
            margin: 0 auto 25px;
        }

        .footer-brand p {
            padding-left: 0;
            border-left: none;
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-title {
            text-align: center;
            font-size: 17px;
        }

        .footer-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-links {
            text-align: center;
        }

        .footer-links a {
            justify-content: center;
            padding-left: 0;
        }

        .footer-links a:hover {
            transform: none;
            padding-left: 0;
        }

        .footer-contact li {
            justify-content: center;
            text-align: center;
            padding-left: 0;
        }

        .footer-contact li i {
            position: relative;
            margin-right: 0;
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
        }

        .footer-bottom .text-md-end {
            text-align: center !important;
            margin-top: 15px;
        }
    }