/* Root Variables for Easy Theme Management */
:root {
    --primary-color: #080600dc; /* Main red color */
    --secondary-color: #a6a7a8; /* Light background color */
    --dark-text-color: #343a40; /* Dark text color */
    --light-text-color: #ffffff; /* Light text color */
}

/* General Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
    line-height: 1.6;
}

h3{
    color: rgb(12, 243, 31);
    text-decoration: underline;

}

/* Navbar Styling */
.navbar {
    
    /* height: 220px;
    display: flex;
    align-items: center;
    margin-top:10px;
    background-color: var(--primary-color);
    border-radius:10px;
    padding: 10px;
    position:relative;
    margin:25px; */

    max-width: 100%; 
    max-height: 220px;
    height: auto; /* Maintain aspect ratio */
    display: flex; /* Avoid inline image spacing */
    width: auto;  
    position:relative;
    padding: 10px;
    align-items: center;
    margin-top:10px;
    background-color: var(--primary-color);
    border-radius:10px;

   
}
navbar-brand{
    width: 100%;
    /* max-width:200px; */
   
    padding: 10px;
    /* margin: auto; */

}

.navbar-brand img {
    max-height: 170px; 
    max-width: 100%; 
    height: auto; /* Maintain aspect ratio */
    display: block; /* Avoid inline image spacing */
    width: auto;  
}

.site-info img {
    max-height: 170px; 
    width: auto;       /* Allow width to adjust proportionally */
    max-width: 100%;   /* Ensure the image doesn't exceed its container */
    height: auto;      /* Maintain aspect ratio */
    display: block;    /* Remove inline spacing */
}

.navbar .nav-link {
    color: var(--light-text-color);
    transition: color 0.3s;
    font-size: 20px;
}

.navbar .nav-link:hover {
    color: #ffcccc; /* Lighter red shade */
}

.navbar .btn {
    color: var(--dark-text-color);
    background-color: var(--light-text-color);
    border: none;
    transition: background-color 0.3s;
}

.navbar .btn:hover {
    background-color: #ddd;
}
.navbar-brand {
    font-style:normal;
    font-size: 50px;
    margin-bottom: 0px;
    color:#000;
    text-indent: 3%; 
}

.sitename{

    font-size:20px;
    margin-top: 0px;
    /* text-indent: 1%;  */

}
.siten{

    font-size:20px;
    margin-top: 0px;
    font-family: "Dancing Script"; 
    font-size: 28px; 
    font-style: normal;
    font-variant: normal;
    font-weight: 700; 
    line-height: 26.4px;
    background-color: #f1b647;
    /* margin-left:10px; */
    margin-right: 10px;
    border-radius:10px;
    height:40px;
    text-indent: 3%;
    letter-spacing: 4px;

}
/* Hero Section */
.hero {
    background: url('image/home.png') no-repeat center center;
    background-size: cover;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--light-text-color);
    margin-top:10px;
}

.overlay-container {
    position: relative;
    z-index: 1;
   
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    backdrop-filter: blur(5px); /* Blur effect */
    
}

.content {
    position: relative;
    max-width: 700px;
    padding: 20px;
    

}

.content .top-text {
    color: #ccc;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.subtext {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #eee;
}

.hero .btn-primary {
    background-color: #f5980c;
    border: none;
    color: white;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.hero .btn-primary:hover {
    background-color: #7e6b6a;
}

.hero .btn-outline-light {
    color: white;
    border: 1px solid white;
    transition: background-color 0.3s;
}

.hero .btn-outline-light:hover {
    background-color: white;
    color: #552c2b;
}

/* Content Sections */
.container {
    
    padding: 40px 15px;
}

/* Container Row Styling */
.row {
    margin-bottom: 30px;
}

.about-text {
    padding: 20px;
}

.about-text h2 {
    color: #d9534f; /* Matches the red color in your design */
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.btn-danger {
    background-color: #703432 !important;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-danger:hover {
    background-color: #643534;
}

.img-fluid {
    max-width: 100%;
    width:3000px;
    height: 700px;
    border-radius: 20px;
}

/* Product Cards */
.design-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    /* background-color: #fff; */
    background-color:rgb(240, 159, 38) !important;
    transition: transform 0.3s, box-shadow 0.3s;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.design-card img {
    width: 100%;
    height: auto;
}

.design-card h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 10px;
}

.design-card p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Types of Designs Section */
.designs-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #111111;
}

.design-cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    
}

.design-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    background-color: #070707;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.design-buttons .btn {
    margin: 10px;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.design-buttons .btn:hover {
    background-color: #ff5555;
}

/* Advantages Section */
.advantages-section {
    background-color: #fdecec;
    padding: 40px 20px;
}
.advantages-section h2 {
    color: black;
    font-weight: bold;
    text-align: center;
}
.advantages-section h3 {
    color: black;
    text-align: center;
}

.advantages-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.advantage {
    flex: 1;
    margin: 10px;
    padding: 10px;
}

.advantage h4 {
    color: var(--primary-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    padding: 40px 20px;
}

.testimonials-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

blockquote {
    border-left: 3px solid var(--primary-color);
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
}
/* Footer Styles */
.site-footer {
    background-color: #2c2c2c;
    color: #f1f1f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-column {
    width: 250px;
    margin: 10px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #c1c1c1;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-icons a {
    color: #f1f1f1;
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff5555;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 14px;
    color: #c1c1c1;
}
/* Features Section */
.features {
    background-color: #f9f3f3; /* Light background to match the example */
    padding: 40px 20px;
    border-radius: 8px;
}

.features h2 {
    color: #d9534f; /* Title color matching the red in your theme */
    margin-bottom: 30px;
}

.feature-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #d9534f; /* Heading color */
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.header {
    background-color: #795f0a;
    color: #3f1313;
    border-radius:30px;
    margin:auto;
    margin-top:10px;
    margin-bottom:10px;
    height:250px;
    width:900px;
    z-index: 100000;
   
}
.nav-tabs .nav-link {
    color: #c01b1b;
    font-weight: bold;
}
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #c01b1b;
}
.design-card {
    max-width: 320px;
}
.card h5 {
    color: #c01b1b;
}
.color-availability {
    gap: 5px;
    margin-top: 10px;
}
.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #000;
}
.color-circle.bg-danger { background-color: #211fa8; }
.color-circle.bg-secondary { background-color: #6c757d; }
.color-circle.bg-warning { background-color: #f0ad4e; }
.color-circle.bg-dark { background-color: #343a40; }

.nav-pills .nav-link {
    border-radius: 15px;
    color: #333;
    border: 1px solid #ddd;
    
}
.nav-pills .nav-link.active {
    background-color: #c01b1b;
    color: #fff;
    border-color: #c01b1b;
}
/* Make the tabs responsive and fit within the container */
#category-tabs {
    flex-wrap: wrap; /* Allow wrapping */
    /* gap: 5px; Space between tabs */
}

#category-tabs .nav-link {
    flex: 1 1 auto; /* Let tabs grow and shrink to fit the container */
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ddd;
    white-space: nowrap; /* Prevent text wrapping within the button */
}

#category-tabs .nav-link.active {
    background-color: #c01b1b;
    color: #fff;
    border-color: #c01b1b;
}
.pricing-table {
    display: none;
}
.pricing-table.active {
    display: block;
}
.content-section {
    /* max-width: 800px; */
    
    margin-right: 240px;
    margin-left: 240px;
    padding: 20px;
    
}

.contact-info {
   
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    flex: 1 1 30%;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.1em;
    color: #333;
}

.contact-form {
    margin-top: 30px;
}

.contact-form h3 {
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.contact-form button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #555;
}

.map {
    margin-top: 30px;
    text-align: center;
}

