 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     overflow-x: hidden;
 }

 /* Navigation Bar Styles */
 .navbar-custom {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(15px);
     padding: 15px 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     border-bottom: 1px solid rgba(212, 175, 55, 0.1);
     box-shadow: 0 2px 20px rgba(26, 26, 26, 0.05);
     transition: all 0.3s ease;
 }

 .navbar-custom.scrolled {
     background: rgba(255, 255, 255, 0.99);
     padding: 10px 0;
     backdrop-filter: blur(20px);
     box-shadow: 0 2px 30px rgba(26, 26, 26, 0.1);
 }

 .navbar-brand {
     font-size: 20px;
     font-weight: 700;
     color: #1a1a1a !important;
     text-decoration: none;
     display: flex;
     align-items: center;
     transition: all 0.3s ease;
 }

 .navbar-brand:hover {
     transform: scale(1.05);
     color: #d4af37 !important;
 }

 .logo-icon {
     width: 145px;
     height: 65px;
     /* background: linear-gradient(135deg, #d4af37, #b8860b); */
     border-radius: 12px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     /* margin-right: 12px; */
     animation: logoFloat 4s ease-in-out infinite;
     /* box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2); */
     position: relative;
     overflow: hidden;
 }

 .logo-icon::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     animation: logoShine 4s ease-in-out infinite;
 }

 @keyframes logoShine {

     0%,
     100% {
         transform: rotate(0deg);
     }

     50% {
         transform: rotate(180deg);
     }
 }

 .logo-icon i {
     color: white;
     position: relative;
     z-index: 2;
 }

 @keyframes logoFloat {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     25% {
         transform: translateY(-3px) rotate(1deg);
     }

     75% {
         transform: translateY(3px) rotate(-1deg);
     }
 }

 .logo-text {
     display: flex;
     flex-direction: column;
     line-height: 1;
 }

 .logo-main {
     font-size: 18px;
     font-weight: 800;
     letter-spacing: 1px;
 }

 .logo-sub {
     font-size: 10px;
     font-weight: 400;
     opacity: 0.8;
     letter-spacing: 2px;
     color: #d4af37;
 }

 .nav-pills-container {
     background: #fafafa;
     border: 1px solid rgba(212, 175, 55, 0.2);
     border-radius: 50px;
     padding: 8px 12px;
     transition: all 0.3s ease;
 }

 .navbar-nav {
     display: flex;
     align-items: center;
     margin: 0;
 }

 .nav-item {
     position: relative;
 }

 .nav-link {
     color: #2c2c2c !important;
     font-weight: 600;
     font-size: 13px;
     padding: 12px 20px !important;
     margin: 0 2px;
     border-radius: 50px;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .nav-link:hover,
 .nav-link.active {
     background: #d4af37;
     /* color: #000 !import.nav-link    ant; */
 }

 .nav-link:hover {
     color: white !important;
     background: linear-gradient(135deg, #d4af37, #b8860b);
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
 }

 /* Dropdown Styles - Updated with Font Awesome Icons */
 .dropdown {
     position: relative;
 }

 .dropdown-toggle {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .dropdown-toggle .dropdown-icon {
     font-size: 10px;
     transition: transform 0.3s ease;
 }

 .dropdown:hover .dropdown-icon {
     transform: rotate(180deg);
 }

 .dropdown-menu {
     background: rgba(255, 255, 255, 0.98);
     border: 1px solid rgba(212, 175, 55, 0.2);
     border-radius: 15px;
     box-shadow: 0 15px 35px rgba(26, 26, 26, 0.1);
     padding: 15px 0;
     margin-top: 10px;
     min-width: 220px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: absolute;
     top: 100%;
     left: 0;
     z-index: 1000;
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-item {
     display: block;
     width: 100%;
     padding: 12px 25px;
     color: #4a4a4a !important;
     text-decoration: none;
     font-weight: 500;
     font-size: 14px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .dropdown-item:hover {
     color: white !important;
     background: linear-gradient(90deg, #d4af37, #b8860b);
     text-decoration: none;
 }

 .header-actions {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .social-icons {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     background: #fafafa;
     border: 1px solid rgba(212, 175, 55, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #4a4a4a;
     font-size: 16px;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
 }

 .social-icon:hover {
     transform: translateY(-3px) scale(1.1);
     color: white;
     text-decoration: none;
 }

 .social-icon.linkedin:hover {
     background: linear-gradient(135deg, #0077b5, #005885);
     box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
     border-color: #0077b5;
 }

 .social-icon.email:hover {
     background: linear-gradient(135deg, #d4af37, #b8860b);
     box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
     border-color: #d4af37;
 }

 .phone-info {
     background: #fafafa;
     border: 1px solid rgba(212, 175, 55, 0.2);
     border-radius: 50px;
     padding: 12px 18px;
     color: #1a1a1a;
     font-size: 14px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
 }

 .phone-info:hover {
     background: #f0f0f0;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
 }

 .phone-icon {
     width: 18px;
     height: 18px;
     background: linear-gradient(135deg, #d4af37, #b8860b);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 9px;
     color: white;
     animation: phoneRing 2s ease-in-out infinite;
 }

 @keyframes phoneRing {

     0%,
     100% {
         transform: rotate(0deg);
     }

     25% {
         transform: rotate(5deg);
     }

     75% {
         transform: rotate(-5deg);
     }
 }

 .btn-request {
     background: linear-gradient(135deg, #d4af37, #b8860b);
     border: none;
     color: white;
     padding: 12px 25px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 14px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
     position: relative;
     overflow: hidden;
     text-decoration: none;
 }

 .btn-request::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.6s;
 }

 .btn-request:hover::before {
     left: 100%;
 }

 .btn-request:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
     color: white;
     text-decoration: none;
 }

 /* Mobile Menu */
 .navbar-toggler {
     border: none;
     padding: 8px;
     background: #fafafa;
     border-radius: 8px;
     transition: all 0.3s ease;
     box-shadow: none;
 }

 .navbar-toggler:focus {
     box-shadow: none;
 }

 .navbar-toggler:hover {
     background: #d4af37;
 }

 .navbar-toggler:hover .navbar-toggler-icon {
     color: white;
 }

 .navbar-toggler-icon {
     background-image: none;
     width: 20px;
     height: 20px;
 }

 .navbar-toggler-icon::before {
     content: '\f0c9';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     color: #4a4a4a;
     font-size: 18px;
     transition: color 0.3s ease;
 }

 .navbar-toggler:hover .navbar-toggler-icon::before {
     color: white;
 }

 /* Mobile Responsive */
 @media (max-width: 991px) {
     .nav-pills-container {
         background: transparent;
         border: none;
         padding: 0;
         margin-top: 20px;
     }

     .navbar-nav {
         flex-direction: column;
         width: 100%;
     }

     .nav-link {
         margin: 2px 0;
         text-align: center;
         width: 100%;
     }

     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: #f8f9fa;
         margin-top: 5px;
         border-radius: 10px;
         display: none;
     }

     .dropdown-menu.show {
         display: block;
     }

     .header-actions {
         margin-top: 20px;
         justify-content: center;
         flex-wrap: wrap;
     }

     .phone-info {
         width: 100%;
         justify-content: center;
         margin-top: 10px;
     }
 }

 /* Hero Section */
 .hero-section {
     height: 100vh;
     min-height: 600px;
     position: relative;
     margin-bottom: 2px;
     overflow: hidden;
 }

 .hero-minimal {
     background: #f8f9fa;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .minimal-video-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     overflow: hidden;
 }

 .minimal-video-bg iframe {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100vw;
     height: 56.25vw;
     min-height: 100vh;
     min-width: 177.77vh;
     transform: translate(-50%, -50%);
     pointer-events: none;
     border: none;
 }

 .minimal-video-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.85);
     z-index: 2;
 }

 .minimal-content {
     max-width: 800px;
     padding: 0 20px;
     position: relative;
     z-index: 3;
 }

 .minimal-badge {
     background: #d4af37;
     color: white;
     padding: 6px 20px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 30px;
     display: inline-block;
 }

 .minimal-title {
     font-size: 4rem;
     font-weight: 300;
     color: #1a1a1a;
     margin-bottom: 20px;
     line-height: 1.1;
 }

 .minimal-subtitle {
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 40px;
     font-weight: 400;
 }

 .minimal-btn {
     background: #1a1a1a;
     color: white;
     border: none;
     padding: 15px 40px;
     border-radius: 0;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
 }

 .minimal-btn:hover {
     background: #d4af37;
     color: white;
 }

 /* Large Decorative Text */
 .section-bg-text {
     position: absolute;
     font-size: 100px;
     font-weight: 900;
     color: rgb(0 0 0 / 5%);
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 1;
     white-space: nowrap;
     pointer-events: none;
 }

 .section-bg-text.rotated-left {
     top: 50%;
     left: 5%;
     transform: translateY(50%) rotate(-90deg);
     transform-origin: left center;
 }

 /* Section Common Styles */
 .section-subtitle {
     color: #d4af37;
     font-size: 16px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 15px;
 }

 .section-title {
     font-size: 3.2rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 25px;
     line-height: 1.2;
 }

 .section-description {
     font-size: 1.1rem;
     color: #666;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.7;
 }

 /* About Section - Redesigned to Match Reference */
 .about-section {
     padding: 120px 0;
     background: #fff;
     position: relative;
     overflow: hidden;
     padding-bottom: 50px;
 }

 .about-main-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: start;
     margin-top: 60px;
 }

 .about-left-content {
     position: relative;
 }

 .legacy-section {
     margin-bottom: 50px;
 }

 .legacy-header {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 30px;
     padding-bottom: 20px;
     border-bottom: 3px solid #d4af37;
 }

 .legacy-icon {
     width: 60px;
     height: 60px;
     background: #d4af37;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 24px;
     flex-shrink: 0;
 }

 .legacy-title {
     font-size: 2.2rem;
     font-weight: 700;
     color: #1a1a1a;
     margin: 0;
 }

 .legacy-text {
     font-size: 1rem;
     line-height: 1.7;
     color: #666;
     margin-bottom: 25px;
 }

 .legacy-highlight {
     background: rgba(212, 175, 55, 0.1);
     padding: 20px;
     border-left: 4px solid #d4af37;
     border-radius: 8px;
     margin: 25px 0;
 }

 .legacy-highlight .highlight-text {
     color: #d4af37;
     font-weight: 600;
 }

 .business-categories-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-top: 40px;
 }

 .business-category-item {
     text-align: center;
     padding: 25px 15px;
     background: #fff;
     border: 1px solid #eee;
     border-radius: 12px;
     transition: all 0.3s ease;
 }

 .business-category-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
     border-color: #d4af37;
 }

 .business-icon-circle {
     width: 50px;
     height: 50px;
     background: #d4af37;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 20px;
     margin: 0 auto 15px;
 }

 .business-category-text {
     font-size: 0.9rem;
     font-weight: 600;
     color: #1a1a1a;
     line-height: 1.3;
 }

 .about-buttons {
     display: flex;
     gap: 20px;
     margin-top: 40px;
 }

 .btn-explore,
 .btn-download {
     padding: 12px 30px;
     border-radius: 25px;
     font-weight: 600;
     font-size: 14px;
     border: none;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .btn-explore {
     background: #d4af37;
     color: white;
 }

 .btn-download {
     background: transparent;
     color: #d4af37;
     border: 2px solid #d4af37;
 }

 .btn-explore:hover,
 .btn-download:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
     color: white;
     text-decoration: none;
 }

 .btn-download:hover {
     background: #d4af37;
 }

 .founder-right-section {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .founder-profile-card {
     background: white;
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     text-align: center;
     border: 1px solid #eee;
 }

 .founder-avatar {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     margin: 0 auto 20px;
     display: block;
     border: 3px solid #d4af37;
 }

 .founder-info h4 {
     font-size: 1.3rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 8px;
 }

 .founder-role {
     color: #d4af37;
     font-weight: 600;
     font-size: 0.95rem;
     margin-bottom: 20px;
 }

 .founder-message {
     background: #f8f9fa;
     padding: 20px;
     border-radius: 10px;
     font-style: italic;
     color: #666;
     position: relative;
     line-height: 1.6;
 }

 .founder-message::before {
     content: '"';
     font-size: 2.5rem;
     color: #d4af37;
     position: absolute;
     top: 5px;
     left: 15px;
     font-family: serif;
 }

 .stats-achievements {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 50px;
 }

 .achievement-card {
     text-align: center;
     padding: 25px 15px;
     background: white;
     border-radius: 12px;
     border: 1px solid #eee;
     transition: all 0.3s ease;
 }

 .achievement-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
     border-color: #d4af37;
 }

 .achievement-number {
     font-size: 2.2rem;
     font-weight: 800;
     color: #d4af37;
     margin-bottom: 8px;
     display: block;
 }

 .achievement-label {
     font-size: 0.9rem;
     color: #666;
     font-weight: 500;
 }

 /* Services Section */
 .services-section {
     padding: 50px 0;
     background: #f8f9fa;
     position: relative;
     overflow: hidden;
 }

 .service-card {
     background: white;
     padding: 50px 30px;
     border-radius: 20px;
     text-align: center;
     border: 1px solid rgba(212, 175, 55, 0.1);
     transition: all 0.4s ease;
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #d4af37, #b8860b);
     transform: scaleX(0);
     transition: transform 0.4s ease;
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
 }

 .service-icon {
     width: 90px;
     height: 90px;
     background: linear-gradient(135deg, #d4af37, #b8860b);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     color: white;
     font-size: 35px;
 }

 .service-title {
     font-size: 1.4rem;
     font-weight: 600;
     margin-bottom: 20px;
     color: #1a1a1a;
 }

 .service-text {
     color: #666;
     line-height: 1.7;
     font-size: 1rem;
 }

 /* Products Section - Complete Masonry Layout Redesign */
 .products-section {
     padding: 50px 0 !important;
     background: #f8f9fa;
     position: relative;
     overflow: hidden;
 }

 .page-header{
    background: none!important;
 }

 .products-showcase {
     margin-top: 60px;
 }

 .products-masonry-container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 150px;
        gap: 20px;
        margin-bottom: 50px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
 }

 /* Grid Layout Positioning */
 .product-card.featured-main {
     grid-column: 1 / 7;
     grid-row: 1 / 4;
 }

 .product-card.sculptures {
     grid-column: 7 / 13;
     grid-row: 1 / 3;
 }

 .product-card.monuments {
     grid-column: 7 / 13;
     grid-row: 3 / 5;
 }

 .product-card.kitchen {
     grid-column: 1 / 7;
     grid-row: 4 / 6;
 }

 .product-card.block-pitched {
     grid-column: 7 / 13;
     grid-row: 5 / 7;
 }

 .product-card.garden {
     grid-column: 3 / 11;
     grid-row: 6 / 8;
 }

 .product-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     position: relative;
     border: 1px solid rgba(212, 175, 55, 0.1);
 }

 .product-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
 }

 .product-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transition: transform 0.4s ease;
 }

 .product-card:hover .product-background {
     transform: scale(1.05);
 }

 .product-overlay-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
     z-index: 1;
 }

 .product-content-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 25px;
     color: white;
     z-index: 2;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
 }

 .product-title-overlay {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 12px;
     color: white;
     line-height: 1.2;
 }

 .product-card.featured-main .product-title-overlay {
     font-size: 1.8rem;
     margin-bottom: 15px;
 }

 .product-description-overlay {
     font-size: 0.95rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.5;
     margin-bottom: 15px;
 }

 .product-card.featured-main .product-description-overlay {
     font-size: 1rem;
     margin-bottom: 20px;
 }

 .product-features-overlay {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .product-feature-overlay {
     background: rgba(212, 175, 55, 0.9);
     color: white;
     padding: 5px 12px;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 600;
     backdrop-filter: blur(10px);
 }

 .product-card.featured-main .product-feature-overlay {
     padding: 6px 16px;
     font-size: 0.8rem;
 }

 .featured-badge-new {
     position: absolute;
     top: 20px;
     right: 20px;
     background: #d4af37;
     color: white;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     z-index: 3;
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
 }

 /* Special Styling for Dark Cards */
 .product-card.dark-theme {
     background: #2c2c2c;
 }

 .product-card.dark-theme .product-overlay-bg {
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
 }

 /* Export Ready Section */
 .export-section {
     padding: 50px 0;
     background: #f8f9fa;
     position: relative;
 }

 .export-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .export-features {
     margin-top: 30px;
 }

 .export-feature {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
     padding: 15px 0;
 }

 .export-feature i {
     width: 20px;
     height: 20px;
     background: #d4af37;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 12px;
     flex-shrink: 0;
 }

 .export-feature span {
     font-weight: 500;
     color: #1a1a1a;
 }

 .export-highlight {
     background: #fff;
     padding: 30px;
     border-left: 4px solid #d4af37;
     border-radius: 10px;
     margin: 30px 0;
 }

 .export-form {
     background: white;
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-control {
     border: 1px solid rgba(212, 175, 55, 0.3);
     border-radius: 10px;
     padding: 15px 20px;
     font-size: 14px;
     transition: all 0.3s ease;
 }

 .form-control:focus {
     border-color: #d4af37;
     box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
 }

 .form-control::placeholder {
     color: #999;
 }

 .submit-btn {
     background: linear-gradient(135deg, #d4af37, #b8860b);
     color: white;
     border: none;
     padding: 15px 30px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 16px;
     width: 100%;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
 }

 /* Why Choose Us Section */
 .why-choose-section {
     padding: 50px 0;
     background: #1a1a1a;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
     margin-top: 60px;
 }

 .stat-item {
     text-align: center;
     padding: 30px 20px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 15px;
     border: 1px solid rgba(212, 175, 55, 0.2);
     transition: all 0.3s ease;
 }

 .stat-item:hover {
     background: rgba(212, 175, 55, 0.1);
     transform: translateY(-5px);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 800;
     color: #d4af37;
     margin-bottom: 15px;
     display: block;
 }

 .stat-label {
     font-size: 1rem;
     opacity: 0.9;
     font-weight: 500;
 }

 /* Contact CTA Section */
 .contact-cta {
     padding: 100px 0;
     background: linear-gradient(135deg, #d4af37, #b8860b);
     text-align: center;
 }

 .cta-title {
     font-size: 3rem;
     font-weight: 700;
     color: white;
     margin-bottom: 25px;
 }

 .cta-description {
     font-size: 1.3rem;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 50px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .cta-buttons {
     display: flex;
     gap: 25px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .cta-btn {
     padding: 18px 35px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 16px;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .cta-btn-primary {
     background: white;
     color: #d4af37;
 }

 .cta-btn-secondary {
     background: #25d366;
     color: white;
 }

 .cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     text-decoration: none;
 }

 .cta-btn-primary:hover {
     color: #d4af37;
 }

 .cta-btn-secondary:hover {
     color: white;
 }

 /* Footer */
 .footer {
     background: #1a1a1a;
     color: white;
     padding: 60px 0 30px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 50px;
     margin-bottom: 40px;
 }

 .footer-about h3 {
     color: #d4af37;
     margin-bottom: 20px;
     font-size: 24px;
 }

 .footer-about p {
     color: #ccc;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .footer-section h4 {
     color: #d4af37;
     margin-bottom: 20px;
     font-size: 18px;
 }

 .footer-section ul {
     list-style: none;
     padding: 0;
 }

 .footer-section ul li {
     margin-bottom: 10px;
 }

 .footer-section ul li a {
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: #d4af37;
 }

 .footer-contact p {
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 30px;
     text-align: center;
     color: #999;
 }

 /* Floating Buttons */
 .floating-buttons {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 1000;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .whatsapp-btn,
 .scroll-top-btn {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 24px;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

 .whatsapp-btn {
     background: #25d366;
 }

 .whatsapp-btn:hover {
     background: #128c7e;
     transform: scale(1.1);
     color: white;
     text-decoration: none;
 }

 .scroll-top-btn {
     background: #d4af37;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px);
 }

 .scroll-top-btn.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .scroll-top-btn:hover {
     background: #b8860b;
     transform: scale(1.1);
     color: white;
     text-decoration: none;
 }

 /* Scroll animations */
 .fade-in-up {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .fade-in-up.animate {
     opacity: 1;
     transform: translateY(0);
 }

 .fade-in-left {
     opacity: 0;
     transform: translateX(-30px);
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .fade-in-left.animate {
     opacity: 1;
     transform: translateX(0);
 }

 .fade-in-right {
     opacity: 0;
     transform: translateX(30px);
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .fade-in-right.animate {
     opacity: 1;
     transform: translateX(0);
 }

 /* Responsive Design Updates */
 @media (max-width: 1200px) {
     .products-grid {
         grid-template-columns: repeat(8, 1fr);
         gap: 15px;
     }

     .product-item.large-featured {
         grid-column: span 4;
         grid-row: span 3;
     }

     .product-item.medium-right-top,
     .product-item.medium-right-bottom,
     .product-item.medium-left,
     .product-item.medium-right-last {
         grid-column: span 4;
         grid-row: span 2;
     }

     .product-item.wide-bottom {
         grid-column: 2 / span 6;
         grid-row: span 2;
     }
 }

 @media (max-width: 992px) {
     .about-main-content {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .stats-achievements {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
         margin-top: 30px;
     }

     .business-categories-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }

     .export-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .products-grid {
         grid-template-columns: repeat(4, 1fr);
         gap: 15px;
     }

     .product-item.large-featured {
         grid-column: span 2;
         grid-row: span 3;
     }

     .product-item.medium-right-top,
     .product-item.medium-right-bottom {
         grid-column: span 2;
         grid-row: span 2;
     }

     .product-item.medium-left,
     .product-item.medium-right-last {
         grid-column: span 2;
         grid-row: span 2;
     }

     .product-item.wide-bottom {
         grid-column: span 4;
         grid-row: span 2;
     }
 }

 @media (max-width: 768px) {
     .minimal-title {
         font-size: 2.5rem;
     }

     .section-title {
         font-size: 2.2rem;
     }

     .legacy-title {
         font-size: 1.8rem;
     }

     .legacy-header {
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }

     .section-bg-text {
         font-size: 6rem;
     }

     .section-bg-text.rotated-left {
         font-size: 4rem;
         left: -10%;
     }

     .cta-title {
         font-size: 2.2rem;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: center;
     }

     .products-grid {
         grid-template-columns: 1fr;
         grid-auto-rows: 250px;
         gap: 20px;
     }

     .product-item.large-featured,
     .product-item.medium-right-top,
     .product-item.medium-right-bottom,
     .product-item.medium-left,
     .product-item.medium-right-last,
     .product-item.wide-bottom {
         grid-column: 1;
         grid-row: auto;
     }

     .floating-buttons {
         bottom: 20px;
         right: 20px;
     }

     .whatsapp-btn,
     .scroll-top-btn {
         width: 50px;
         height: 50px;
         font-size: 20px;
     }

     .about-buttons {
         flex-direction: column;
         gap: 15px;
     }

     .stats-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .stats-achievements {
         grid-template-columns: 1fr;
         gap: 15px;
     }
 }

 @media (max-width: 576px) {
     .minimal-title {
         font-size: 2rem;
     }

     .section-title {
         font-size: 1.8rem;
     }

     .legacy-section {
         margin-bottom: 30px;
     }

     .founder-profile-card {
         padding: 25px 20px;
     }

     .export-form {
         padding: 30px 20px;
     }

     .legacy-text {
         font-size: 0.95rem;
     }

     .product-content {
         padding: 20px;
     }

     .product-title {
         font-size: 1.1rem;
     }

     .product-description {
         font-size: 0.85rem;
     }

     .products-grid {
         grid-auto-rows: 220px;
     }

     .products-grid-wrapper {
         padding: 0 15px;
     }
 }

 /* Stagger animations */
 .fade-in-up:nth-child(1) {
     transition-delay: 0.1s;
 }

 .fade-in-up:nth-child(2) {
     transition-delay: 0.2s;
 }

 .fade-in-up:nth-child(3) {
     transition-delay: 0.3s;
 }

 .fade-in-up:nth-child(4) {
     transition-delay: 0.4s;
 }

 .fade-in-up:nth-child(5) {
     transition-delay: 0.5s;
 }

 .fade-in-up:nth-child(6) {
     transition-delay: 0.6s;
 }

 /* Scroll Down Arrow */
 .scroll-down-arrow {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 4;
     cursor: pointer;
 }

 .scroll-arrow {
     width: 60px;
     height: 60px;
     border: 2px solid rgba(26, 26, 26, 0.6);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
     animation: bounce 2s infinite;
 }

 .scroll-arrow:hover {
     background: #d4af37;
     border-color: #d4af37;
     color: white;
     transform: scale(1.1);
 }

 .scroll-arrow i {
     font-size: 20px;
     color: #1a1a1a;
     transition: color 0.3s ease;
 }

 .scroll-arrow:hover i {
     color: white;
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-10px);
     }

     60% {
         transform: translateY(-5px);
     }
 }

 /* Products Section - Clean Masonry Layout */
 .products-section {
     padding: 120px 0;
     background: #f8f9fa;
     position: relative;
     overflow: hidden;
 }

 .products-showcase {
     margin-top: 60px;
 }

 .products-grid-wrapper {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* .products-grid {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     grid-auto-rows: 150px;
     gap: 20px;
     margin-bottom: 50px;
 } */

 /* Product Card Base Styles */
 .product-item {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     cursor: pointer;
     transition: all 0.4s ease;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
 }

 .product-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
 }

 /* Grid Positioning */
 .product-item.large-featured {
     grid-column: span 6;
     grid-row: span 3;
 }

 .product-item.medium-right-top {
     grid-column: span 6;
     grid-row: span 2;
 }

 .product-item.medium-right-bottom {
     grid-column: span 6;
     grid-row: span 2;
 }

 .product-item.medium-left {
     grid-column: span 6;
     grid-row: span 2;
 }

 .product-item.medium-right-last {
     grid-column: span 6;
     grid-row: span 2;
 }

 .product-item.wide-bottom {
     grid-column: 3 / span 8;
     grid-row: span 2;
 }

 /* Product Image */
 .product-image-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transition: transform 0.5s ease;
 }

 .product-item:hover .product-image-bg {
     transform: scale(1.05);
 }

 /* Overlay */
 .product-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom,
             rgba(0, 0, 0, 0.1) 0%,
             rgba(0, 0, 0, 0.4) 60%,
             rgba(0, 0, 0, 0.8) 100%);
     z-index: 1;
 }

 /* Content */
 .product-content {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 25px;
     color: white;
     z-index: 2;
 }

 .product-item.large-featured .product-content {
     padding: 35px;
 }

 .product-title {
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 10px;
     line-height: 1.3;
 }

 .product-item.large-featured .product-title {
     font-size: 1.6rem;
     margin-bottom: 15px;
 }

 .product-description {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.5;
     margin-bottom: 15px;
 }

 .product-item.large-featured .product-description {
     font-size: 1rem;
 }

 .product-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .product-tag {
     background: rgba(212, 175, 55, 0.9);
     color: white;
     padding: 5px 12px;
     border-radius: 12px;
     font-size: 0.75rem;
     font-weight: 600;
 }

 .product-item.large-featured .product-tag {
     padding: 6px 15px;
     font-size: 0.8rem;
 }

 /* Featured Badge */
 .featured-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: #d4af37;
     color: white;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.7rem;
     font-weight: 700;
     text-transform: uppercase;
     z-index: 3;
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
 }

 /* Button */
 .products-cta {
     text-align: center;
     margin-top: 40px;
 }

 .btn-products {
     background: #d4af37;
     color: white;
     padding: 15px 35px;
     border-radius: 25px;
     font-weight: 600;
     font-size: 16px;
     border: none;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .btn-products:hover {
     background: #b8860b;
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
     color: white;
     text-decoration: none;
 }

 .dropdown-toggle::after {
     display: none !important;
 }
 