* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
/*Top Bar*/
.top-bar {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    color: #ff6600;
}
.contact-info {
    display: flex;
    gap: 40px;
}
.info h4{
    color: #333;
    font-size: 15px;
}
.info p {
    color: #666;
    font-size: 13px;
}
/*Navigation Bar*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 10px 20px;  
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}
.shop-btn {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
.shop-btn:hover {
    background: white;
    color: #e65c00;
    opacity: 0.9;
}
/*About Section*/
.about-section {
    display: flex;
    align-items: center;
    padding: 50px;
    gap: 40px;
}
/*Image*/
.about-img img{
    width: 400px;
}
/*Abt us text*/
.small-title {
    color: #ff6600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.about-text h2 {
    color: #0f1f4d;
    margin-bottom: 20px;
    font-size: 28px;
}
.about-text p {
    color: gray;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.about-text button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
.explore-section {
    padding: 50px;
    text-align: center;
}
.explore-section h5 {
    color: #ff6600;
}
.explore-section h2 {
    color: navy;
}
.explore-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  border-radius: 100%; 
}
.explore-card {
    width: 30%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 30%;
    background: #ff6600; 
}

.featured-section {
    padding: 50px;
    text-align: center;
}
.featured-section h5 {
    color: #ff6600;
    letter-spacing: 2px;
}
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.card {
    width: 30%;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;  
}
.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
} 
.offer-section {
    background: #e65c00;
    padding: 60px;
    display: flex;
}
.offer-section h5 {
    color: whitesmoke;
    letter-spacing: 2px;      
}
.offer-left {
    width: 60%;
    color: black;
}
.offer-right {
    width: 35%;
    background: white;
    padding: 30px;
    border-radius: 5%;
}
.offer-left input,.offer-left select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}
.offer-right button {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: white;
    border: none;
    cursor: pointer;
}
.testimonial-box {
    text-align: center;
    padding: 20px;
}
.testimonial-box img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.testimonial-section h5 {
    color: #ff6600;
    letter-spacing: 2px;
}
.testimonial-section h2 {
    columns: #0f1f4d;
}
.testimonial-section h5, .testimonial-section h2 {
    text-align: center;
}
.carousel-indicators {
    justify-content: center;
    position: static;
    margin-top: 20px;
}
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff6600;
    opacity: 0.5;
    margin: 5px;
    border: #e65c00;
}
.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.3);
}
.blog-section {
    text-align: center;
    padding: 60px;
}
.blog-container {
    display: flex !important;
    justify-content: center !important;
    gap: 20px;
    flex-wrap: wrap;
}
.blog-card {
    width: 30% !important;
    box-sizing: border-box;
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
footer {
    background: #0f1f4d;
    color: white;
    padding: 40px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-box {
    width: 30%;
}
.footer-box input{
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
}
.footer-box button {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background: #ff6600;
    border: none;
    color: white;
    cursor: pointer;
}
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid gray;
    padding-top: 20px;
    font-size: 14px;
}
/*About Page*/
.page-header {
    background-image: url(../images/banner.jfif);
    height: 300px;
    text-align: center;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bolder;
}
/*Collections*/
.collection-section {
    text-align: center;
    padding: 50px;
}
.collection-section h5 {
    color: #ff6600;
}
.collection-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.collection-card {
    width: 100%;
    max-width: 300px;
    border: 1px solid #ddd;
    padding: 15px;
}
.collection-card img {
    width: 100%;
    height: auto;
}
.collection-card h3 {
    margin-top: 10px;
}
.collection-card p {
    color: gray;
}
/*Contact*/
body {
    color: #333;
    background: #fafafa;
    font-family: "Patua One", sans-serif;
}
.contact-form {
    padding: 50px;
    margin: 30px 0;
}
.contact-form h1 {
    color: #ff6600;
    font-weight: bold;
    margin: 0 0 15px;
}
.contact-form .form-control, .contact-form .btn {
    min-height: 38px;
    border-radius: 2px;
}
.contact-form .form-control:focus {
    border-color: #ff6600;
}
.contact-form .btn-primary, .contact-form .btn-primary:active {
    color: #fff;
    min-width: 150px;
    font-size: 16px;
    background: #ff6600 !important;
    border: none;
}
.contact-form .btn-primary:hover {
    background: #ff6600 !important; 
}
.contact-form .btn i {
    margin-right: 5px;
}
.contact-form label {
    opacity: 0.7;
}
.contact-form textarea {
    resize: vertical;
}
.hint-text {
    font-size: 15px;
    padding-bottom: 20px;
    opacity: 0.6;
}
/*Success*/
.success-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0,1);
    max-width: 500px;
    width: 100%;
}
.circle-check {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    color: white;
    background-color: #ff6600;
    border-radius: 50%;
    margin: 20px auto;
}
.success-box h1 {
    color: navy;
    margin-bottom: 10px;
}
.success-box p {
    color: #555;
    margin-bottom: 25px;
}
.btn {
    display: inline-block;
    background: navy;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
}
.btn :hover {
    background: #001f5c;
}