 html { scroll-behavior: smooth; }
        body {
            font-family: 'Outfit', 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 50%, #facc15 100%);
            color: #1e293b;
        }
        .section-title {
            background: linear-gradient(90deg, #2563eb 0%, #facc15 60%, #64748b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            
        }
        .navbar {
            background: rgba(248,250,252,0.98);
            backdrop-filter: blur(12px);
            transition: background 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 16px 0 rgba(37,99,235,0.08);
        }
     /* --- Fix for Navbar Text Visibility on Scroll Only --- */
.navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 4px 24px 0 rgba(37,99,235,0.18);
}
.navbar.scrolled .nav-link {
    color: #2563eb !important;
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
    color: #facc15 !important;
}
        .nav-link:after {
            content: "";
            display: block;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
            transition: width .3s;
            border-radius: 2px;
            margin-top: 4px;
        }
        .nav-link:hover,
        .nav-link:focus {
            color: #facc15;
            background: rgba(37,99,235,0.08);
            box-shadow: 0 4px 16px 0 rgba(37,99,235,0.10);
            transform: translateY(-2px) scale(1.05);
        }
        .nav-link:hover:after, .nav-link:focus:after { width: 100%; }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            width: 32px;
            height: 32px;
            justify-content: center;
            align-items: center;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 3px;
            background: #2563eb;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        #mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 80vw;
            max-width: 320px;
            background: #f8fafc;
            border-radius: 0 0 0 2rem;
            z-index: 9999;
            box-shadow: 0 8px 32px 0 rgba(37,99,235,0.18);
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(.4,2,.6,1);
        }
        #mobile-menu.open {
            display: block;
            transform: translateX(0);
        }
        #menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9998;
            background: rgba(100,116,139,0.25);
        }
        #menu-overlay.open {
            display: block;
        }
        @media (max-width: 767px) {
            .hamburger { display: flex; }
            .md\:flex { display: none !important; }
        }
        @media (min-width: 768px) {
            #mobile-menu, #menu-overlay { display: none !important; }
            .md\:flex { display: flex !important; }
        }
        .hero-bg {
    background: #2563eb;
    position: relative;
    min-height: 100vh;
    /* Remove gradient for clarity */
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(37,99,235,0.85); /* Strong blue overlay */
    z-index: 1;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('Images/eleganttensilegazebodesigns.png') center/cover no-repeat;
    opacity: 0.90; /* Much lighter image overlay */
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #fff;
    text-shadow: 0 2px 16px #1e293b88, 0 1px 2px #0006;
}


 .hero-cta {
            background: linear-gradient(90deg, #facc15 0%, #2563eb 100%);
            color: #1e293b;
            font-weight: 700;
            border-radius: 9999px;
            padding: 1rem 2.5rem;
            font-size: 1.25rem;
            box-shadow: 0 8px 32px 0 rgba(37,99,235,0.18);
            transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
            margin-top: 2rem;
            display: inline-block;
        }
        .hero-cta:hover, .hero-cta:focus {
            background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
            color: #fff;
            transform: scale(1.05) translateY(-2px);
        }
        .card {
            background: #f8fafc;
            border-radius: 1.5rem;
            box-shadow: 0 4px 24px 0 rgba(100,116,139,0.10);
            transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
            backdrop-filter: blur(8px);
            border: 1px solid #e5e7eb;
        }
        .card:hover {
            box-shadow: 0 8px 32px 0 rgba(37,99,235,0.18);
            background: #fef9c3;
            transform: translateY(-4px) scale(1.01);
        }
        .gallery-img {
            border-radius: 1.25rem;
            box-shadow: 0 2px 12px 0 rgba(100,116,139,0.10);
            transition: transform 0.3s, box-shadow 0.3s;
            background: #f1f5f9;
        }
        .gallery-img:hover {
            transform: scale(1.04) rotate(-1deg);
            box-shadow: 0 8px 32px 0 #facc15, 0 2px 4px 0 rgba(100,116,139,0.08);
        }
        .contact-info-icon {
            min-width: 2.5rem;
            min-height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2563eb 60%, #facc15 100%);
            color: #fff;
            border-radius: 9999px;
            font-size: 1.25rem;
            box-shadow: 0 2px 8px 0 rgba(100,116,139,0.10);
        }
        .contact-form input, .contact-form textarea {
            background: #f1f5f9;
            border: 2px solid #e5e7eb;
            transition: border-color 0.2s, box-shadow 0.2s;
            color: #1e293b;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 2px #facc15;
            outline: none;
        }
        .contact-form label {
            color: #2563eb;
            font-weight: 600;
        }
        .contact-form button {
            background: linear-gradient(90deg, #facc15 30%, #2563eb 100%);
            color: #1e293b;
        }
        .contact-form button:hover {
            background: linear-gradient(90deg, #2563eb 30%, #facc15 100%);
            color: #fff;
        }
        .floating-btn {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 100;
            background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
            color: #fff;
            padding: 16px 24px;
            border-radius: 9999px;
            font-weight: bold;
            box-shadow: 0 8px 24px 0 rgba(37,99,235,0.18);
            transition: background 0.3s, color 0.2s, transform 0.2s;
            animation: floatBtn 2.5s infinite ease-in-out;
        }
        .floating-btn:hover {
            background: linear-gradient(90deg, #facc15 0%, #2563eb 100%);
            color: #22223b;
            transform: scale(1.07);
        }
        @keyframes floatBtn {
            0%, 100% { transform: translateY(0);}
            50% { transform: translateY(-8px);}
        }
        section {
            scroll-margin-top: 80px;
            transition: background 0.5s;
        }
        @media (max-width: 640px) {
            .max-w-7xl, .max-w-6xl, .max-w-5xl {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            h1, h2, h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 768px) {
            .card { border-radius: 1rem; }
            .floating-btn { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 1rem; }
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover, a:focus {
            color: #facc15;
            text-decoration: none;
        }
        .btn-main, .btn-main:visited {
            background: linear-gradient(90deg, #facc15 0%, #2563eb 100%);
            color: #1e293b;
            border-radius: 9999px;
            font-weight: 700;
            padding: 0.75rem 2rem;
            box-shadow: 0 4px 16px 0 rgba(37,99,235,0.10);
            transition: background 0.2s, color 0.2s, transform 0.2s;
            display: inline-block;
            text-decoration: none;
        }
        .btn-main:hover, .btn-main:focus {
            background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
            color: #fff;
            transform: scale(1.05) translateY(-2px);
            text-decoration: none;
        }
        strong, b {
            color: #2563eb;
            font-weight: bold;
        }
        /* Responsive grid for 10 cards, always symmetric */


/* Improved Service Section Layout */
#services .grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}
@media (min-width: 640px) {
  #services .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  #services .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  #services .grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.service-glass-card {
  background: rgba(255,255,255,0.82);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10), 0 1.5px 6px 0 rgba(251,191,36,0.10);
  border-top: 4px solid #facc15;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  padding: 2.5rem 1.2rem 1.5rem 1.2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-glass-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 16px 40px 0 rgba(37,99,235,0.16), 0 2px 8px 0 rgba(251,191,36,0.12);
  border-top-color: #2563eb;
  background: rgba(255,255,255,0.96);
}
.service-glass-icon {
  background: linear-gradient(135deg, #facc15 0%, #2563eb 100%);
  border-radius: 50%;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(37,99,235,0.10);
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}
.service-glass-icon img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2563eb;
  background: #fff;
}
.service-glass-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  text-align: center;
  min-height: 48px;
  letter-spacing: 0.01em;
}
.service-glass-card p {
  font-size: 0.97rem;
  color: #334155;
  margin-bottom: 1.1rem;
  line-height: 1.6;
  text-align: center;
}
.service-glass-card p span {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.97em;
}
.service-glass-card .btn-main {
  margin-top: auto;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
  background: linear-gradient(90deg, #facc15 0%, #2563eb 100%);
  color: #1e293b;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
  text-decoration: none;
}
.service-glass-card .btn-main:hover, .service-glass-card .btn-main:focus {
  background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
  color: #fff;
  transform: scale(1.05) translateY(-2px);
  text-decoration: none;
}
@media (max-width: 991px) {
  .service-glass-icon { width: 3.2rem; height: 3.2rem; }
  .service-glass-icon img { width: 2.1rem; height: 2.1rem; }
  .service-glass-card h3 { font-size: 1rem; margin-top: 1.2rem; }
  .service-glass-card p { font-size: 0.92rem; }
  .service-glass-card { min-height: 340px; padding: 2rem 0.7rem 1rem 0.7rem; }
}
@media (max-width: 640px) {
  .service-glass-card { border-radius: 1rem; }
  #services .grid { gap: 1.2rem; }
}


.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    overflow: hidden;
    padding: 0 2.5rem;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4,2,.6,1);
    will-change: transform;
    touch-action: pan-x;
}
.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 0.5rem;
    transition: transform 0.3s;
}
.carousel-slide img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px 0 rgba(100,116,139,0.10);
    background: #f1f5f9;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
    color: #fff;
    border: none;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 4px 16px 0 rgba(37,99,235,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    opacity: 0.85;
}
.carousel-arrow.left { left: 0.5rem; }
.carousel-arrow.right { right: 0.5rem; }
.carousel-arrow:hover, .carousel-arrow:focus {
    background: linear-gradient(90deg, #facc15 0%, #2563eb 100%);
    color: #22223b;
    transform: scale(1.07);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #e0e7ef;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
    background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
    transform: scale(1.2);
}
@media (min-width: 640px) {
    .carousel-slide { min-width: 50%; }
}
@media (min-width: 1024px) {
    .carousel-slide { min-width: 25%; }
}
@media (min-width: 1280px) {
    .carousel-slide { min-width: 20%; }
}
@media (max-width: 640px) {
    .carousel-slide img { height: 10rem; }
    .carousel-container { padding: 0 1rem; }
}
