 :root {
     --primary-teal: #0F5C63;
     --secondary-teal: #1F7A7A;
     --gold-accent: #C9A227;
     --light-gold: #E6C65C;
     --bg-light: #F8FAFB;
     --dark-text: #1A1A1A;
 }

 body {
     font-family: 'IBM Plex Sans', sans-serif;
     color: var(--dark-text);
     background-color: var(--bg-light);
     scroll-behavior: smooth;
 }

 /* Utility Classes */
 .section-padding {
     padding: 80px 0;
 }

 .text-primary-teal {
     color: var(--primary-teal);
 }

 .text-gold {
     color: var(--gold-accent);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-weight: 600;
 }

 /* Buttons */
 .btn-gold {
     background: linear-gradient(135deg, var(--gold-accent), var(--light-gold));
     color: #fff;
     border: none;
     border-radius: 50px;
     padding: 14px 32px;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .btn-gold:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
     color: #fff;
 }

 .btn-outline-teal {
     border: 2px solid var(--primary-teal);
     color: var(--primary-teal);
     background: transparent;
     border-radius: 50px;
     padding: 12px 30px;
     font-weight: 600;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .btn-outline-teal:hover {
     background-color: var(--primary-teal);
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(15, 92, 99, 0.2);
 }

 /* Navbar */
 .navbar {
     transition: all 0.3s ease;
     padding: 20px 0;
     background: transparent;
 }

 .navbar.scrolled {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     padding: 4px 0;
     border-bottom: 1px solid #dfdfdf;
 }

 .navbar-brand {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .navbar-brand img {
     height: 60px;
     width: auto;
 }

 .nav-link {
     font-weight: 500;
     color: var(--dark-text);
     margin: 0 12px;
     transition: color 0.3s;
     font-size: 0.95rem;
 }

 .nav-link:hover,
 .nav-link.active {
     color: var(--primary-teal) !important;
 }

 /* Hero Section */
 .hero {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, rgba(15, 92, 99, 0.03) 0%, rgba(31, 122, 122, 0.08) 100%);
     overflow: hidden;
     padding-top: 80px;
 }

 .hero-title {
     font-size: 3.5rem;
     line-height: 1.15;
     color: var(--primary-teal);
     margin-bottom: 24px;
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: #555;
     margin-bottom: 40px;
     line-height: 1.6;
     max-width: 90%;
 }

 .hero-shape {
     position: absolute;
     right: -10%;
     top: 50%;
     transform: translateY(-50%);
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, rgba(15, 92, 99, 0.03) 70%, transparent 100%);
     border-radius: 50%;
     z-index: 0;
 }

 .hero-content {
     position: relative;
     z-index: 1;
 }

 .hero-image-wrapper {
     position: relative;
     z-index: 1;
     text-align: center;
 }

 .hero-logo-watermark {
     width: 80%;
     max-width: 400px;
     opacity: 0.8;
     filter: drop-shadow(0 20px 30px rgba(15, 92, 99, 0.1));
     animation: float 6s ease-in-out infinite;
     border: 1px solid #a2a2a2;
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 /* About Section */
 .about-section {
     background-color: #fff;
 }

 .about-image {
     border-radius: 24px;
     box-shadow: 0 20px 40px rgba(15, 92, 99, 0.08);
     width: 100%;
     height: auto;
     object-fit: cover;
 }

 .section-title {
     color: var(--primary-teal);
     font-size: 2.5rem;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 20px;
 }

 .section-title::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 60px;
     height: 4px;
     background: linear-gradient(90deg, var(--gold-accent), var(--primary-teal));
     border-radius: 2px;
 }

 .text-center .section-title::after {
     left: 50%;
     transform: translateX(-50%);
 }

 .about-list {
     list-style: none;
     padding: 0;
     margin-top: 30px;
 }

 .about-list li {
     position: relative;
     padding-left: 40px;
     margin-bottom: 18px;
     font-size: 1.1rem;
     color: #444;
 }

 .about-list li i {
     position: absolute;
     left: 0;
     top: 4px;
     color: var(--gold-accent);
     font-size: 1.2rem;
     background: rgba(201, 162, 39, 0.1);
     width: 28px;
     height: 28px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Services Section */
 .services-section {
     background-color: var(--bg-light);
 }

 .service-card {
     background: #fff;
     border-radius: 16px;
     padding: 40px 30px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
     transition: all 0.4s ease;
     height: 100%;
     border: 1px solid rgba(15, 92, 99, 0.05);
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--gold-accent), var(--light-gold));
     transform: scaleX(0);
     transition: transform 0.4s ease;
     transform-origin: left;
     z-index: -1;
 }

 .service-card::after {
     content: '';
     position: absolute;
     bottom: -50px;
     right: -50px;
     width: 100px;
     height: 100px;
     background: radial-gradient(circle, rgba(15, 92, 99, 0.03) 0%, transparent 70%);
     border-radius: 50%;
     z-index: -1;
     transition: all 0.4s ease;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(15, 92, 99, 0.08);
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover::after {
     transform: scale(2);
 }

 .service-icon {
     font-size: 3rem;
     color: var(--gold-accent);
     margin-bottom: 24px;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .service-card:hover .service-icon {
     transform: scale(1.1);
     color: var(--primary-teal);
 }

 .service-title {
     font-size: 1.3rem;
     color: var(--primary-teal);
     margin-bottom: 16px;
 }

 .service-text {
     color: #666;
     margin-bottom: 0;
     line-height: 1.6;
 }

 /* Why Choose Us Section */
 .why-choose-us {
     background-color: var(--primary-teal);
     color: #fff;
     position: relative;
     overflow: hidden;
 }

 .why-choose-us::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"/></svg>');
     z-index: 0;
 }

 .why-choose-us .container {
     position: relative;
     z-index: 1;
 }

 .why-choose-us .section-title {
     color: #fff;
 }

 .why-choose-us .section-title::after {
     background: var(--gold-accent);
 }

 .feature-box {
     text-align: center;
     padding: 30px 20px;
     transition: all 0.3s ease;
 }

 .feature-icon-wrapper {
     width: 80px;
     height: 80px;
     margin: 0 auto 24px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;
     border: 2px solid rgba(255, 255, 255, 0.1);
 }

 .feature-box:hover .feature-icon-wrapper {
     background: var(--gold-accent);
     border-color: var(--gold-accent);
     transform: translateY(-10px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .feature-icon-wrapper i {
     font-size: 2rem;
     color: #fff;
 }

 .feature-title {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 12px;
     color: #fff;
 }

 .feature-text {
     color: rgba(255, 255, 255, 0.8);
     font-size: 0.95rem;
 }

 /* CTA Section */
 .cta-section {
     background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
     text-align: center;
     padding: 100px 0;
 }

 .cta-content {
     background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
     border-radius: 24px;
     padding: 60px 40px;
     color: #fff;
     box-shadow: 0 20px 40px rgba(15, 92, 99, 0.15);
     position: relative;
     overflow: hidden;
 }

 .cta-content::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%);
     animation: rotate 20s linear infinite;
 }

 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .cta-content h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
 }

 .cta-content p {
     font-size: 1.1rem;
     opacity: 0.9;
     margin-bottom: 30px;
     position: relative;
     z-index: 1;
 }

 /* Contact Section */
 .contact-section {
     background-color: #fff;
 }

 .contact-info-wrapper {
     padding-right: 40px;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 30px;
 }

 .contact-item-icon {
     width: 50px;
     height: 50px;
     background: rgba(15, 92, 99, 0.05);
     color: var(--primary-teal);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     margin-right: 20px;
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .contact-item:hover .contact-item-icon {
     background: var(--primary-teal);
     color: #fff;
 }

 .contact-item-content h4 {
     font-size: 1.1rem;
     margin-bottom: 5px;
     color: var(--dark-text);
 }

 .contact-item-content p {
     color: #666;
     margin: 0;
     line-height: 1.6;
 }

 .contact-item-content a {
     color: #666;
     text-decoration: none;
     transition: color 0.3s;
 }

 .contact-item-content a:hover {
     color: var(--primary-teal);
 }

 .contact-form-card {
     background: #fff;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .form-label {
     font-weight: 500;
     color: #444;
     margin-bottom: 8px;
 }

 .form-control {
     padding: 14px 20px;
     border-radius: 10px;
     border: 1px solid #e1e1e1;
     background: #fafafa;
     transition: all 0.3s ease;
 }

 .form-control:focus {
     box-shadow: 0 0 0 4px rgba(15, 92, 99, 0.1);
     border-color: var(--primary-teal);
     background: #fff;
 }

 .btn-submit {
     width: 100%;
     padding: 16px;
     font-size: 1.1rem;
     margin-top: 10px;
 }

 /* Footer */
 .footer {
     background-color: var(--dark-text);
     color: rgba(255, 255, 255, 0.7);
     padding: 10px 0 20px;
 }

 .footer-brand {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
 }

 .footer-brand img {
     height: 40px;
     filter: brightness(0) invert(1);
 }

 .footer-brand span {
     font-size: 1.5rem;
     font-weight: 700;
     color: #fff;
 }

 .footer-text {
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .footer-divider {
     width: 40px;
     height: 2px;
     background-color: var(--gold-accent);
     margin: 20px 0;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     padding-left: 15px;
 }

 .footer-links a::before {
     content: '\f105';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     color: var(--gold-accent);
     opacity: 0;
     transition: all 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--gold-accent);
     padding-left: 20px;
 }

 .footer-links a:hover::before {
     opacity: 1;
 }

 .copyright {
     text-align: center;
     padding-top: 30px;
     font-size: 0.9rem;
 }

 /* Responsive Adjustments */
 @media (max-width: 991px) {
     .hero-title {
         font-size: 2.8rem;
     }

     .section-padding {
         padding: 60px 0;
     }

     .contact-info-wrapper {
         padding-right: 0;
         margin-bottom: 40px;
     }

     .hero-image-wrapper {
         margin-top: 40px;
     }

     .navbar {
         background: #fff;
         padding: 12px 0;
         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     }

     .navbar-collapse {
         background: #fff;
         padding: 20px;
         border-radius: 10px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         margin-top: 15px;
         position: absolute;
         width: 100%;
         left: 0;
         top: 60px
     }
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.2rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

     .cta-content {
         padding: 40px 20px;
     }

     .cta-content h2 {
         font-size: 2rem;
     }

     .about-image {
         margin-bottom: 30px;
     }
 }

 .sideBtn {
     position: fixed;
     right: 0;
     top: 45%;
     left: auto;
     width: 50px;
     background-size: 400% 400%;
     animation: gradient 5s ease infinite;
     z-index: 1000;
     color: #fff;
     cursor: pointer;
 }

 #whatsapp img {
     width: 50px;
     height: 50px;
     margin-bottom: 10px;
 }