 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

.raleway{
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
 :root {
     --color-primary: #0a597a;
     --color-accent: #3796b1;
     --color-light-accent: #5BA5BC;
     --color-gold: #C9A961;
     --color-bg: #FAFBFC;
     --color-white: #FFFFFF;
     --color-text: #2C3E50;
     --color-text-light: #6B7F94;
     --font-display: "Raleway", sans-serif;
     --font-body: 'Work Sans', sans-serif;
     --shadow-subtle: 0 2px 20px rgba(10, 47, 63, 0.06);
     --shadow-strong: 0 10px 40px rgba(10, 47, 63, 0.12);
 }

 body {
     font-family: var(--font-body);
     line-height: 1.6;
     color: var(--color-text);
     background: var(--color-bg);
     overflow-x: hidden;
 }

 /* Header & Navigation */
 header {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     box-shadow: var(--shadow-subtle);
     z-index: 1000;
     transition: all 0.3s ease;
 }

 header.scrolled {
     box-shadow: var(--shadow-strong);
 }

 nav {
     max-width: 1400px;
     margin: 0 auto;
     padding: 1.2rem 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-family: var(--font-display);
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--color-primary);
     letter-spacing: 1px;
     text-decoration: none;
 }

 .logo span {
     color: var(--color-gold);
     font-style: italic;
 }

 .nav-links {
     display: flex;
     gap: 2.5rem;
     list-style: none;
     align-items: center;
 }

 .nav-links a {
     color: var(--color-text);
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     letter-spacing: 0.3px;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--color-gold);
     transition: width 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--color-accent);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .cta-button {
     background: var(--color-accent);
     color: white !important;
     padding: 0.7rem 1.8rem;
     border-radius: 4px;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid var(--color-accent);
 }

 .cta-button::after {
     display: none;
 }

 .cta-button:hover {
     background: transparent;
     color: var(--color-accent) !important;
     transform: translateY(-2px);
 }

 .mobile-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     z-index: 1001;
 }

 .mobile-toggle span {
     width: 25px;
     height: 3px;
     background: var(--color-primary);
     transition: all 0.3s ease;
 }

 /* Hero Section */
 .hero {
     margin-top: 80px;
     min-height: 90vh;
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 80%, rgba(91, 165, 188, 0.15) 0%, transparent 50%);
     pointer-events: none;
 }

 .hero-content {
     max-width: 1400px;
     margin: 0 auto;
     padding: 4rem 2rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .hero-text h1 {
     font-family: var(--font-display);
     font-size: 4rem;
     font-weight: 700;
     color: white;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     animation: fadeInUp 0.8s ease;
 }

 .hero-text .highlight {
     color: var(--color-gold);
     font-style: italic;
 }

 .hero-text p {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 2.5rem;
     line-height: 1.8;
     animation: fadeInUp 0.8s ease 0.2s backwards;
 }

 .hero-buttons {
     display: flex;
     gap: 1.5rem;
     animation: fadeInUp 0.8s ease 0.4s backwards;
 }

 .btn {
     padding: 1rem 2.5rem;
     border: none;
     border-radius: 4px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
     font-family: var(--font-body);
 }

 .btn-primary {
     background: white;
     color: var(--color-primary);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .btn-secondary {
     background: transparent;
     color: white;
     border: 2px solid white;
 }

 .btn-secondary:hover {
     background: white;
     color: var(--color-primary);
 }

 .hero-visual {
     position: relative;
     animation: fadeIn 1s ease 0.6s backwards;
 }

 .hero-stats {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
 }

 .stat-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 2rem;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
 }

 .stat-card:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-5px);
 }

 .stat-number {
     font-family: var(--font-display);
     font-size: 3rem;
     font-weight: 700;
     color: var(--color-gold);
     margin-bottom: 0.5rem;
 }

 .stat-label {
     color: rgba(255, 255, 255, 0.9);
     font-size: 1rem;
     font-weight: 500;
 }

 /* Services Section */
 .services {
     padding: 6rem 2rem;
     max-width: 1400px;
     margin: 0 auto;
 }

 .section-header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section-label {
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: var(--color-accent);
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .section-title {
     font-family: var(--font-display);
     font-size: 3rem;
     font-weight: 700;
     color: var(--color-primary);
     margin-bottom: 1rem;
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: var(--color-text-light);
     max-width: 600px;
     margin: 0 auto;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .service-card {
     background: white;
     padding: 2.5rem;
     border-radius: 8px;
     box-shadow: var(--shadow-subtle);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-strong);
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, var(--color-light-accent), var(--color-accent));
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: white;
 }

 .service-card h3 {
     font-family: var(--font-display);
     font-size: 1.8rem;
     color: var(--color-primary);
     margin-bottom: 1rem;
     font-weight: 600;
 }

 .service-card p {
     color: var(--color-text-light);
     line-height: 1.8;
     margin-bottom: 1.5rem;
 }

 .service-features {
     list-style: none;
     margin-top: 1rem;
 }

 .service-features li {
     padding: 0.5rem 0;
     padding-left: 1.5rem;
     position: relative;
     color: var(--color-text);
     font-size: 0.95rem;
 }

 .service-features li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--color-accent);
     font-weight: bold;
 }

 /* Why Choose Us Section */
 .why-choose {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     padding: 6rem 2rem;
 }

 .why-choose-content {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .features-list {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .feature-item {
     display: flex;
     gap: 1.5rem;
     align-items: flex-start;
 }

 .feature-number {
     font-family: var(--font-display);
     font-size: 3rem;
     font-weight: 700;
     color: var(--color-gold);
     line-height: 1;
     min-width: 60px;
 }

 .feature-content h3 {
     font-family: var(--font-display);
     font-size: 1.5rem;
     color: var(--color-primary);
     margin-bottom: 0.5rem;
 }

 .feature-content p {
     color: var(--color-text-light);
     line-height: 1.7;
 }

 .why-image {
     background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
     border-radius: 12px;
     padding: 3rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 2rem;
     box-shadow: var(--shadow-strong);
 }

 .value-card {
     background: rgba(255, 255, 255, 0.95);
     padding: 2rem;
     border-radius: 8px;
     backdrop-filter: blur(10px);
 }

 .value-card h4 {
     color: var(--color-primary);
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
     font-weight: 600;
 }

 .value-card p {
     color: var(--color-text-light);
     font-size: 0.95rem;
 }

 /* Process Section */
 .process {
     padding: 6rem 2rem;
     max-width: 1400px;
     margin: 0 auto;
 }

 .process-steps {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-top: 3rem;
     position: relative;
 }

 .process-step {
     text-align: center;
     position: relative;
 }

 .step-number {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--color-accent), var(--color-light-accent));
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-display);
     font-size: 2rem;
     font-weight: 700;
     margin: 0 auto 1.5rem;
     box-shadow: var(--shadow-subtle);
 }

 .process-step h3 {
     font-family: var(--font-display);
     font-size: 1.5rem;
     color: var(--color-primary);
     margin-bottom: 1rem;
 }

 .process-step p {
     color: var(--color-text-light);
     line-height: 1.7;
 }

 /* Testimonials Section */
 .testimonials {
     background: var(--color-primary);
     padding: 6rem 2rem;
     color: white;
 }

 .testimonials .section-label {
     color: var(--color-gold);
 }

 .testimonials .section-title {
     color: white;
 }

 .testimonials .section-subtitle {
     color: rgba(255, 255, 255, 0.8);
 }

 .testimonials-grid {
     max-width: 1400px;
     margin: 3rem auto 0;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .testimonial-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 2.5rem;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .testimonial-text {
     font-size: 1.05rem;
     line-height: 1.8;
     margin-bottom: 1.5rem;
     color: rgba(255, 255, 255, 0.95);
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .author-avatar {
     width: 50px;
     height: 50px;
     background: var(--color-gold);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.2rem;
 }

 .author-info h4 {
     font-weight: 600;
     margin-bottom: 0.2rem;
 }

 .author-info p {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.7);
 }

 /* CTA Section */
 .cta-section {
     padding: 6rem 2rem;
     background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
     text-align: center;
     color: white;
 }

 .cta-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .cta-content h2 {
     font-family: var(--font-display);
     font-size: 3rem;
     margin-bottom: 1.5rem;
     font-weight: 700;
 }

 .cta-content p {
     font-size: 1.2rem;
     margin-bottom: 2.5rem;
     color: rgba(255, 255, 255, 0.9);
 }

 .cta-form {
     display: flex;
     gap: 1rem;
     max-width: 600px;
     margin: 0 auto;
 }

 .cta-form input {
     flex: 1;
     padding: 1.2rem;
     border: none;
     border-radius: 4px;
     font-size: 1rem;
     font-family: var(--font-body);
 }

 .cta-form button {
     padding: 1.2rem 2.5rem;
     background: var(--color-gold);
     color: white;
     border: none;
     border-radius: 4px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     font-family: var(--font-body);
 }

 .cta-form button:hover {
     background: #b8984d;
     transform: translateY(-2px);
 }

 /* Footer */
 footer {
     background: var(--color-primary);
     color: white;
     padding: 4rem 2rem 2rem;
 }

 .footer-content {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-about h3 {
     font-family: var(--font-display);
     font-size: 1.8rem;
     margin-bottom: 1rem;
     color: var(--color-gold);
 }

 .footer-about p {
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.7;
     margin-bottom: 1.5rem;
 }

 .social-links {
     display: flex;
     gap: 1rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: var(--color-gold);
     transform: translateY(-3px);
 }

 .footer-links h4 {
     margin-bottom: 1.5rem;
     font-weight: 600;
     font-size: 1.1rem;
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links ul li {
     margin-bottom: 0.8rem;
 }

 .footer-links ul li a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links ul li a:hover {
     color: var(--color-gold);
 }

 .footer-bottom {
     max-width: 1400px;
     margin: 0 auto;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
     color: rgba(255, 255, 255, 0.6);
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .hero-content {
         grid-template-columns: 1fr;
     }

     .why-choose-content {
         grid-template-columns: 1fr;
     }

     .footer-content {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100vh;
         background: var(--color-primary);
         flex-direction: column;
         justify-content: center;
         align-items: center;
         gap: 2rem;
     }

     .nav-links.active {
         display: flex;
     }

     .nav-links a {
         color: white;
         font-size: 1.3rem;
     }

     .mobile-toggle {
         display: flex;
     }

     .mobile-toggle.active span:nth-child(1) {
         transform: rotate(45deg) translate(5px, 5px);
     }

     .mobile-toggle.active span:nth-child(2) {
         opacity: 0;
     }

     .mobile-toggle.active span:nth-child(3) {
         transform: rotate(-45deg) translate(7px, -7px);
     }

     .hero-text h1 {
         font-size: 2.5rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .hero-buttons {
         flex-direction: column;
     }

     .hero-stats {
         grid-template-columns: 1fr;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .process-steps {
         grid-template-columns: 1fr;
     }

     .testimonials-grid {
         grid-template-columns: 1fr;
     }

     .cta-form {
         flex-direction: column;
     }

     .footer-content {
         grid-template-columns: 1fr;
     }

     .cta-content h2 {
         font-size: 2rem;
     }
 }

 @media (max-width: 480px) {
     nav {
         padding: 1rem;
     }

     .logo {
         font-size: 1.4rem;
     }

     .hero-text h1 {
         font-size: 2rem;
     }

     .hero-text p {
         font-size: 1rem;
     }
 }