:root {
    --primary-color: #0099a8; /* Teal for primary elements */
    --secondary-color: #00b4b4; /* Lighter teal accent */
    --teal-color: #0099a8; /* Main teal color */
    --teal-dark: #007a85; /* Darker teal for hover */
    --teal-light: #4dc9c9; /* Light teal for accents */
    --light-blue: #00b4b4; /* Teal for buttons */
    --light-bg: #e8f7f7;
    --text-dark: #1a1a3e;
    --white: #ffffff;
    --nav-height: 90px; /* fixed navbar offset */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: var(--nav-height);
}

body {
    padding-top: var(--nav-height);
}

section,
[id] {
    scroll-margin-top: var(--nav-height);
}

/* Keep home hero video behind navbar, but push hero text below it */
#home.hero-section {
    margin-top: calc(-1 * var(--nav-height));
    padding-top: calc(6rem + var(--nav-height));
}

@media (max-width: 991px) {
    :root {
        --nav-height: 78px;
    }
}

/* Top Blue Strip */
.top-strip {
    background-color: var(--teal-color);
    width: 100%;
}

.top-strip-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    border-bottom: none;
}

.brand-name {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Order Here Button */
.btn-order {
    background-color: var(--light-blue);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: #6bb6d6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Hero Headline */
.hero-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Results Section */
.results-section {
    margin-bottom: 2rem;
}

.results-heading {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.results-text {
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    margin-top: 3rem;
}

.stat-item {
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

/* Decorative Bubbles */
.bubble-deco {
    position: absolute;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.15;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 8%;
}

.bubble-3 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 8%;
}

.bubble-4 {
    width: 90px;
    height: 90px;
    bottom: 15%;
    left: 3%;
}

.bubble-5 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 15%;
}

/* Cloud Decorations */
.cloud-deco {
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.08;
    z-index: 0;
    border-radius: 50px;
}

.cloud-1 {
    width: 200px;
    height: 100px;
    top: 15%;
    left: 5%;
    border-radius: 100px;
}

.cloud-2 {
    width: 150px;
    height: 80px;
    bottom: 20%;
    right: 10%;
    border-radius: 80px;
}

/* Hero Image */
.hero-img-container {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-circular-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cloud-frame {
    position: absolute;
    bottom: -30px;
    right: -50px;
    width: 600px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.2;
    z-index: 1;
    transform: rotate(-15deg);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-circular-image {
        width: 400px;
        height: 400px;
        margin-top: 2rem;
    }
    
    .cloud-frame {
        width: 450px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-circular-image {
        width: 300px;
        height: 300px;
    }
    
    .cloud-frame {
        width: 350px;
        height: 250px;
    }
    
    .bubble-deco {
        display: none;
    }
}

/* Footer */
footer,
.footer-teal {
    background-color: var(--teal-color) !important;
    color: white;
}

footer h5 {
    color: white !important;
}

footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer a:hover {
    color: white !important;
}

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

/* Themed Bootstrap outline primary button */
.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 0, 153, 168;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--teal-dark);
  --bs-btn-active-border-color: var(--teal-dark);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-border-color: rgba(0, 153, 168, 0.35);
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
}

.btn-outline-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 153, 168, 0.25) !important;
}
body {

    box-sizing: border-box;

  }

  

  html, body {

    height: 100%;

    margin: 0;

    padding: 0;

  }

  

  * {

    box-sizing: border-box;

  }

  

  body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    overflow-x: hidden;

  }

  

  .main-wrapper {

    width: 100%;

    height: 100%;

    overflow: auto;

  }

  

  /* Navbar Styles */

  .navbar-custom {

    background: rgba(0, 153, 168, 0.3);

    backdrop-filter: blur(8px);

    box-shadow: none;

    padding: 1.25rem 0;

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    transition: all 0.3s ease;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  }

  

  .navbar-custom.scrolled {

    background: rgba(0, 153, 168, 0.95);

    backdrop-filter: blur(12px);

    box-shadow: 0 2px 20px rgba(0,0,0,0.2);

    padding: 0.75rem 0;

  }

  

  .navbar-toggler {

    background: rgba(255, 255, 255, 0.2);

    border: 2px solid rgba(255, 255, 255, 0.5);

    padding: 0.5rem 0.75rem;

  }

  

  .navbar-toggler-icon {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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");

  }

  

  @media (max-width: 991px) {

    .navbar-collapse {

      background: rgba(0, 153, 168, 0.98);

      backdrop-filter: blur(10px);

      margin-top: 1rem;

      padding: 1rem;

      border-radius: 10px;

    }

    

    .nav-item {

      margin: 0.25rem 0;

    }

    

    .navbar-custom.scrolled .navbar-collapse {

      background: rgba(0, 153, 168, 0.98);

    }

  }

  

  .navbar-brand {

    font-size: 1.5rem;

    font-weight: 700;

    color: white !important;

  }

  .brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    line-height: 1;
  }

  .brand-maytag-logo {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  }

  .brand-subtext {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: -10px;
    margin-left: 10px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .footer-maytag-logo {
    height: 28px;
    width: auto;
    display: block;
  }

  .footer-brand-subtext {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .brand-maytag-logo {
      height: 30px;
    }
    .brand-subtext {
      font-size: 0.85rem;
    }
  }

  

  .nav-link {

    color: rgba(255,255,255,0.9) !important;

    font-weight: 500;

    margin: 0 0.5rem;

    transition: all 0.3s ease;

  }

  

  .nav-link:hover {

    color: white !important;

    transform: translateY(-2px);

  }

  

  /* Hero Section */

  .hero-section {

    background: linear-gradient(135deg, #0099a8 0%, #00b4b4 100%);

    color: white;

    padding: 6rem 0;

    text-align: center;

    position: relative;

    overflow: hidden;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

  }

  

  .hero-video-bg {

    position: absolute;

    top: 50%;

    left: 50%;

    min-width: 100%;

    min-height: 100%;

    width: auto;

    height: auto;

    transform: translate(-50%, -50%);

    object-fit: cover;

    z-index: 0;

  }

  

  .hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgb(0 153 168 / 15%);

    z-index: 1;

  }

  

  .hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto;

    padding: 2rem;

  }

  

  .hero-section h1 {

    font-size: 3.5rem;

    font-weight: 800;

    margin-bottom: 1.5rem;

    color: white;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);

    line-height: 1.2;

  }

  

  .hero-section p {

    font-size: 1.35rem;

    margin-bottom: 2rem;

    color: white;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);

  }

  

  .hero-section .lead {

    font-size: 1.5rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 1rem;

    color: #a8f0f0;

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);

  }

  

  @media (max-width: 768px) {

    .hero-section h1 {

      font-size: 2.2rem;

    }

    

    .hero-section p {

      font-size: 1.1rem;

    }

    

    .hero-section .lead {

      font-size: 1.1rem;

      letter-spacing: 2px;

    }

  }

  

  .btn-custom {

    background: white;

    color: #0099a8;

    padding: 1rem 2.5rem;

    border-radius: 50px;

    font-weight: 700;

    font-size: 1.1rem;

    border: none;

    transition: all 0.3s ease;

    text-decoration: none;

    display: inline-block;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    text-transform: uppercase;

    letter-spacing: 1px;

  }

  

  .btn-custom:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    color: #0099a8;

    background: #f0f8ff;

  }

  

  /* Section Styles */

  .section-padding {

    padding: 5rem 0;

  }

  

  .section-title {

    text-align: center;

    margin-bottom: 3rem;

    font-size: 2.5rem;

    font-weight: 700;

    color: #333;

  }

  

  /* Rates Cards */

  .rate-card {

    border: none;

    border-radius: 15px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.1);

    transition: all 0.3s ease;

    height: 100%;

    overflow: hidden;

  }

  

  .rate-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);

  }

  

  .rate-card-header {

    background: linear-gradient(135deg, #0099a8 0%, #00b4b4 100%);

    color: white;

    padding: 2rem;

    text-align: center;

  }

  

  .rate-card-header h3 {

    margin: 0;

    font-size: 1.75rem;

    font-weight: 700;

  }

  

  .rate-card-body {

    padding: 2rem;

  }

  

  .price {

    font-size: 2.5rem;

    font-weight: 700;

    color: #0099a8;

    margin-bottom: 1rem;

  }

  

  .rate-features {

    list-style: none;

    padding: 0;

    margin: 0;

  }

  

  .rate-features li {

    padding: 0.75rem 0;

    border-bottom: 1px solid #eee;

  }

  

  .rate-features li:last-child {

    border-bottom: none;

  }

  /* Services pricing blocks */
  .services-rates {
    margin-top: 2rem;
  }

  .pricing-table-wrapper {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
  }

  .pricing-table thead th {
    border-bottom: 2px solid rgba(0, 153, 168, 0.2);
    color: var(--text-dark);
    font-weight: 700;
  }

  .pricing-table tbody td {
    border-color: rgba(0, 153, 168, 0.12);
  }

  .rates-note {
    background: rgba(0, 153, 168, 0.08);
    border: 1px solid rgba(0, 153, 168, 0.18);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
  }

  /* Featured machines video */
  .video-feature {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 153, 168, 0.12);
  }

  /* Featured Machines (homepage) bubble SVG decor */
  .featured-machines {
    position: relative;
    overflow: hidden;
  }

  .featured-machines .bubble-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .featured-machines .container {
    position: relative;
    z-index: 1;
  }

  .featured-machines .bubble {
    position: absolute;
    fill: rgba(0, 153, 168, 0.10);
    stroke: rgba(0, 153, 168, 0.18);
    stroke-width: 2;
    filter: blur(0px);
    animation: float 7s ease-in-out infinite;
  }

  .featured-machines .bubble-1 {
    width: 160px;
    height: 160px;
    top: -40px;
    left: -50px;
    animation-duration: 9s;
  }

  .featured-machines .bubble-2 {
    width: 110px;
    height: 110px;
    top: 10%;
    right: 6%;
    animation-duration: 8s;
  }

  .featured-machines .bubble-3 {
    width: 90px;
    height: 90px;
    bottom: 12%;
    left: 8%;
    animation-duration: 10s;
  }

  .featured-machines .bubble-4 {
    width: 190px;
    height: 190px;
    bottom: -70px;
    right: -60px;
    animation-duration: 11s;
  }

  .featured-machines .bubble-5 {
    width: 75px;
    height: 75px;
    top: 55%;
    left: 18%;
    animation-duration: 7.5s;
  }

  @media (max-width: 768px) {
    .featured-machines .bubble-2,
    .featured-machines .bubble-5 {
      display: none;
    }
  }

  /* About section */
  .about-section {
    background: var(--light-bg);
  }

  

  /* Gallery Section */

  .gallery-section {

    background: #f8f9fa;

  }

  

  .gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 15px;

    margin-bottom: 0;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

    aspect-ratio: 1;

    display: block;

    text-decoration: none;

  }

  .gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  

  .gallery-item:hover .gallery-overlay {

    opacity: 1;

  }

  

  .gallery-image {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 4rem;

    background: linear-gradient(135deg, #0099a8 0%, #00b4b4 100%);

    transition: transform 0.3s ease;

  }

  

  .gallery-item:hover .gallery-image {

    transform: scale(1.1);

  }

  .gallery-item:hover .gallery-img {
    transform: scale(1.08);
  }

  

  .gallery-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(0, 153, 168, 0.78);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.3s ease;

  }

  

  .gallery-overlay-text {

    color: white;

    font-size: 1.5rem;

    font-weight: 600;

  }

  

  /* Location Section */

  .location-card {

    background: white;

    border-radius: 15px;

    padding: 3rem;

    box-shadow: 0 5px 25px rgba(0,0,0,0.1);

    margin-bottom: 2rem;

  }

  

  .location-info {

    display: flex;

    align-items: center;

    margin-bottom: 1.5rem;

    font-size: 1.1rem;

  }

  

  .location-icon {

    font-size: 2rem;

    margin-right: 1rem;

    color: #0099a8;

  }

  

  .map-placeholder {

    width: 100%;

    height: 400px;

    background: linear-gradient(135deg, #0099a8 0%, #00b4b4 100%);

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 3rem;

  }

  /* Map embed on home page */
  .location-map {
    width: 100%;
    border-radius: 15px;
  }

  

  /* Promotions Section */

  .promo-card {

    background: linear-gradient(135deg, #0099a8 0%, #00b4b4 100%);

    color: white;

    border-radius: 15px;

    padding: 2.5rem;

    margin-bottom: 2rem;

    box-shadow: 0 5px 25px rgba(0,0,0,0.15);

    transition: all 0.3s ease;

  }

  

  .promo-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.2);

  }

  

  .promo-badge {

    background: rgba(255,255,255,0.3);

    padding: 0.5rem 1rem;

    border-radius: 50px;

    display: inline-block;

    margin-bottom: 1rem;

    font-weight: 600;

  }

  

  .promo-card h4 {

    font-size: 1.75rem;

    font-weight: 700;

    margin-bottom: 1rem;

  }

  

  /* Footer */

  .footer {

    background: #0099a8;

    color: white;

    padding: 4rem 0 2rem 0;

  }

  

  .footer h5 {

    font-weight: 700;

    margin-bottom: 1.5rem;

    color: white;

  }

  

  .footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

  }

  

  .footer-links li {

    margin-bottom: 0.75rem;

  }

  

  .footer-links a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: color 0.3s ease;

  }

  

  .footer-links a:hover {

    color: white;

  }

  

  .footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    margin-top: 3rem;

    padding-top: 2rem;

    text-align: center;

  }

  

  .social-icons {

    display: flex;

    gap: 1rem;

    justify-content: center;

    margin-top: 1.5rem;

  }

  

  .social-icon {

    width: 40px;

    height: 40px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 1.25rem;

    transition: all 0.3s ease;

    text-decoration: none;

  }

  

  .social-icon:hover {

    background: rgba(255, 255, 255, 0.2);

    transform: translateY(-3px);

    color: white;

  }

  

  .footer-contact-info {

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 0.5rem;

  }

  

  /* About Section */

  .about-image-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

  }

  

  .about-image {

    width: 100%;

    max-width: 400px;

    aspect-ratio: 1;

    background: linear-gradient(135deg, #0099a8 0%, #00b4b4 100%);

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    box-shadow: 0 10px 40px rgba(0,0,0,0.15);

  }

  .about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
  }

  

  .about-content h3 {

    font-size: 2rem;

    font-weight: 700;

    color: #333;

    margin-bottom: 1.5rem;

  }

  

  .about-content p {

    font-size: 1.1rem;

    line-height: 1.8;

    color: #666;

    margin-bottom: 1.5rem;

  }

  

  .about-features {

    margin-top: 2rem;

  }

  

  .about-feature-item {

    display: flex;

    align-items: center;

    margin-bottom: 1rem;

    font-size: 1.1rem;

    color: #333;

  }

  

  .about-feature-icon {

    width: 30px;

    height: 30px;

    background: #0099a8;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 1rem;

    font-weight: 700;

  }

  

  /* Contact Section */

  .contact-form-wrapper, .contact-info-wrapper {

    background: white;

    border-radius: 15px;

    padding: 2.5rem;

    box-shadow: 0 5px 25px rgba(0,0,0,0.1);

    height: 100%;

  }

  

  .contact-form-wrapper h4, .contact-info-wrapper h4 {

    font-size: 1.75rem;

    font-weight: 700;

    color: #333;

    margin-bottom: 2rem;

  }

  

  .contact-form .form-label {

    font-weight: 600;

    color: #333;

    margin-bottom: 0.5rem;

  }

  

  .contact-form .form-control {

    border: 2px solid #e0e0e0;

    border-radius: 8px;

    padding: 0.75rem;

    transition: border-color 0.3s ease;

  }

  

  .contact-form .form-control:focus {

    border-color: #0099a8;

    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.1);

  }

  

  .btn-contact {

    background: linear-gradient(135deg, #0099a8 0%, #00b4b4 100%);

    color: white;

    padding: 0.75rem 2rem;

    border-radius: 50px;

    font-weight: 600;

    border: none;

    transition: all 0.3s ease;

    cursor: pointer;

    width: 100%;

  }

  

  .btn-contact:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);

  }

  

  .form-success-message {

    background: #4caf50;

    color: white;

    padding: 1rem;

    border-radius: 8px;

    text-align: center;

    font-weight: 600;

    margin-top: 1rem;

  }

  

  .contact-detail {

    display: flex;

    align-items: flex-start;

    margin-bottom: 2rem;

  }

  

  .contact-icon {

    font-size: 2rem;

    margin-right: 1rem;

    color: #0099a8;

  }

  

  .contact-detail strong {

    display: block;

    font-size: 1.1rem;

    color: #333;

    margin-bottom: 0.5rem;

  }

  

  .contact-detail p {

    margin: 0;

    color: #666;

    line-height: 1.6;

  }

  

  /* Scroll Animation */

  .fade-in {

    opacity: 0;

    transform: translateY(30px);

    transition: opacity 0.6s ease, transform 0.6s ease;

  }

  

  .fade-in.visible {

    opacity: 1;

    transform: translateY(0);

  }