
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
      font-family: 'Georgia', 'Times New Roman', serif;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
}
   /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #1a1a1a;
            color: white;
            background-image: url(../images/banner1.webp);
        }
        .contact-info{
                border: 1px solid #fff;
                padding: 25px;
                border-radius: 8px;
        }

        .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #d4af37;
        }

        .contact-details p {
            margin-bottom: 10px;
            color: #ccc;
        }

        .contact-form {
            background: #2a2a2a;
            padding: 40px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #d4af37;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #555;
            background: #1a1a1a;
            color: white;
            border-radius: 5px;
        }

        .form-group textarea {
            height: 100px;
            resize: vertical;
        }

        .submit-btn {
            background: #d4af37;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #b8941f;
        }

        /* Footer */
        .footer {
            background: #000;
            color: #666;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #d4af37;
        }

        .copyright {
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .stats {
                flex-direction: column;
                gap: 40px;
            }

            .projects-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .builders-logos {
                flex-wrap: wrap;
                gap: 30px;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Lazy Loading Animation */
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Loading placeholder */
        .image-placeholder {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        .top-builders-section {
  background: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Georgia', serif;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-builders-carousel .builder-logo {
  padding: 20px;
  transition: transform 0.3s ease;
}

.top-builders-carousel .builder-logo img {
  max-height: 100px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.top-builders-carousel .builder-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px gold);
}

.owl-carousel .owl-dot span {
  background: #ccc;
}

.owl-carousel .owl-dot.active span {
  background: gold;
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
  display: block !important; /* ← Force visibility */
}

.owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.owl-dot.active {
  background: gold;
}
