/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    font-weight: 500;
}

.contact-info i {
    color: #1e40af;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-section {
    text-align: center;
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-section {
    margin-bottom: 60px;
}

.pricing-section h2 {
    font-size: 2.2rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-section > p {
    font-size: 1.1rem;
    color: #475569;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #475569;
    line-height: 1.6;
}

.why-choose-section {
    text-align: center;
    background: #f8fafc;
    padding: 60px 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.why-choose-section h2 {
    font-size: 2.2rem;
    color: #1e40af;
    margin-bottom: 20px;
    font-weight: 600;
}

.why-choose-section p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: #f8fafc;
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1e40af;
}

.testimonial-content p {
    font-size: 1rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1e40af;
    font-weight: 600;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 0;
    color: white;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1e40af;
}

.submit-button {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.footer-contact i {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-section h2,
    .pricing-section h2,
    .testimonials h2,
    .form-text h2 {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}





    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
}

.carousel-item img {
    width: 100%;
    height: 200px; /* Fixed height for thumbnails */
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 64, 175, 0.8);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-button:hover {
    background: #1e40af;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-item {
        min-width: 90%;
        margin: 0 5%;
    }
    .carousel-button {
        display: none; /* Hide buttons on very small screens */
    }
}

@media (max-width: 768px) {
    .layouts-carousel h2 {
        font-size: 2rem;
    }
    .layouts-carousel p {
        font-size: 1rem;
    }
    .carousel-item {
        min-width: 300px;
        margin: 0 10px;
    }
    .carousel-button {
        padding: 10px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        min-width: 90%;
        margin: 0 5%;
    }
    .carousel-button {
        display: none; /* Hide buttons on very small screens */
    }
}



/* Layouts Grid Section */
.layouts-grid {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.layouts-grid h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
    font-weight: 600;
}

.layouts-grid p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.layouts-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.layout-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.layout-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.layout-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f8fafc;
}

.layout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.layout-card:hover .layout-image img {
    transform: scale(1.05);
}

.layout-info {
    padding: 25px 20px;
    text-align: center;
}

.layout-info h3 {
    font-size: 1.2rem;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.2);
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.demo-button i {
    font-size: 0.8rem;
}

/* Responsive Design for Layouts Grid */
@media (max-width: 1024px) {
    .layouts-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .layouts-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .layouts-grid {
        padding: 60px 0;
    }
    
    .layouts-grid h2 {
        font-size: 2rem;
    }
    
    .layout-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .layouts-grid {
        padding: 50px 0;
    }
    
    .layouts-grid h2 {
        font-size: 1.8rem;
    }
    
    .layout-info {
        padding: 20px 15px;
    }
    
    .layout-image {
        height: 160px;
    }
}

