:root {
    --primary: #0062cc;
    --primary-light: #e6f2ff;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
    --accent: #ff6b6b;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-800: #343a40;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #ffffff;
  }
  
  .bg-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  }
  
  .section-padding {
    padding: 100px 0;
  }
  
  @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
  
  .navbar-transparent {
      background-color: transparent !important;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 3;
      box-shadow: none;
      padding: 10px 0;
  }
  
  .navbar-logo {
      width: 150px;
      height: auto;
      margin-left: 20px;
  }
  
  .navbar-nav {
      margin-left: auto;
  }
  
  .navbar-nav .nav-item {
      margin-left: 10px;
  }
  
  .navbar-nav .nav-item .nav-link {
      color: rgb(0, 0, 0);
      font-size: 1.2rem;
      padding-left: 15px;
  }
  
  .navbar-nav .nav-item .contact-link {
      background-color: rgba(30, 144, 255, 0.2);
      color: rgb(0, 0, 0);
      padding: 8px 15px;
      border-radius: 20px;
      margin-left: 5px;
      transition: all 0.3s ease;
      font-size: 1rem;
      border: 1px solid rgba(30, 144, 255, 0.5);
      position: relative;
      top: 2px;
  }
  .navbar-nav .nav-item .contact-link:hover {
      background-color: #1e90ff;
      color: white;
      transform: translateY(-2px);
  }
  
  .navbar-toggler {
      background-color: rgba(30, 144, 255, 0.2);
      color: white;
      border: 1px solid rgba(30, 144, 255, 0.5);
      border-radius: 20px;
      transition: all 0.3s ease;
      padding: 8px 15px;
      margin-right: 10px;
  }
  
  .navbar-toggler:hover {
      background-color: #1e90ff;
      transform: translateY(-2px);
  }
  
  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
  
  .contact-btn {
    background-color: var(--primary);
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: #0051a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 98, 204, 0.2);
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-light);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
  }
  
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    line-height: 1.7;
  }
  
  .hero-image {
    position: relative;
    z-index: 1;
  }
  
  .hero-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
  }
  
  .hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #0051a8;
    border-color: #0051a8;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 98, 204, 0.2);
  }
  
  .btn-outline {
    color: var(--dark);
    background-color: transparent;
    border: 2px solid var(--gray-300);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: rgba(0, 98, 204, 0.05);
  }
  
  /* Services Section */
  .services-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
  }
  
  .services-section::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #f8fafc;
    clip-path: ellipse(60% 70% at 50% 100%);
  }
  
  .section-title {
    margin-bottom: 60px;
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
  }
  
  .section-title p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .service-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.6s ease;
    opacity: 0;
  }
  
  .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
  }
  
  .service-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon i {
    color: white;
  }
  
  .service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
  }
  
  .service-description {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 1rem;
  }
  
  
  .footer-section {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 60px 0 30px;
    font-family: 'Outfit', sans-serif;
  }
  
  .footer-brand {
    margin-bottom: 20px;
  }
  
  .footer-logo {
    width: 130px;
    height: auto;
  }
  
  .footer-heading {
    color: #1e90ff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.25rem;
  }
  
  .footer-links, .footer-contact {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li, .footer-contact li {
    margin-bottom: 10px;
  }
  
  .footer-links a, .footer-contact a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover, .footer-contact a:hover {
    color: #1e90ff;
    text-decoration: none;
  }
  
  .footer-contact i {
    margin-right: 10px;
    color: #1e90ff;
  }
  
  .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
  }
  
  .footer-bottom {
    font-size: 0.9rem;
  }
  
  .footer-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
  }
  
  .footer-link:hover {
    color: #1e90ff;
    text-decoration: none;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 2.8rem;
    }
    
    .hero-bg {
      width: 100%;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
      height: 50%;
    }
    
    .navbar-collapse {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-top: 10px;
    }
    
    .contact-btn {
      margin-top: 10px;
      display: inline-block;
    }
  }
  
  @media (max-width: 768px) {
    .section-padding {
      padding: 70px 0;
    }
    
    .hero-section {
      text-align: center;
    }
    
    .hero-title {
      font-size: 2.2rem;
    }
    
    .hero-image {
      margin-top: 40px;
    }
    
    .hero-buttons {
      justify-content: center;
    }
    
    .section-title h2 {
      font-size: 2rem;
    }
    
    .section-title p {
      font-size: 1.1rem;
    }
    
    .footer {
      text-align: center;
    }
    
    .footer-heading:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-links a:hover {
      padding-left: 0;
    }
  }