/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
}


body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

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

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c5a47e;
}

/* Hero section */
.hero {
    height: 600px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/slider-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c5a47e;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b08e68;
}

/* Featured collections */
.featured {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

.collections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.collection-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
    padding-right: 50px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

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

/* Services section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 48px;
    color: #c5a47e;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-item p {
    font-size: 15px;
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.testimonials .section-title h2 {
    color: #fff;
}

.testimonials .section-title p {
    color: #ccc;
}

.testimonial-item {
    text-align: center;
    padding: 0 50px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    color: #c5a47e;
}

/* Contact section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: flex;
}

.contact-info {
    flex: 1;
    padding-right: 50px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
}

textarea.form-control {
    height: 150px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #c5a47e;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c5a47e;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 991px) {
    .collections {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .logo-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .collections {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}









/*===============MY CSS=================*/
a {
    text-decoration:  none;
}

h1, h2, h3, h4, h5 {
    line-height: 2.5rem;
    font-weight: 600;
    color: rgb(18, 37, 114);
    font-family: 'Times New Roman', Times, serif;
}

.myf-w-lg {
    font-size: 45px;
    font-weight: 800;
    line-height: 2.9rem;
    font-family: 'Times New Roman', Times, serif;
}

.myd-color {
 color:rgb(231, 63, 7)
}

.myblue-color {
    color: rgb(62, 82, 165);
}

.myblue-bg {
    background-color: rgb(69, 89, 168);
}

.myhover-box {
    position: relative;
}

.bg-mylight {
    background-color: rgb(240, 240, 243);
}

.box-box{
    z-index: 4;
}

.box-box:hover {
    background-color: rgb(88, 173, 252);
    color: #fff;
    transition: all .2s ease-in-out;
}

.box-box:hover h3 {
    color: #fff;
}





/*========End Utility Classes=========*/

/*========Slider=========*/

.slider-item {
    position: relative;
    height: 70dvh;
}

.slider-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
}

.slider-caption {
    max-width: 450px;
    height: auto;
    color: #fefcfc;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
}

/*========End Slider=========*/

/*========Testimonials=========*/
.testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner-testiomonials {
    width: 100%;
    height: 400px;
}
/*========End Testimonials=========*/

/*========End Page Headers=========*/
.page-header {
    background: url('img/slider-4.jpg') no-repeat center center/cover;
    width: 100%;
    height: 300px;
    position: relative;

}

.page-title {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: rgba(7, 7, 202, 0.3);
}

.tiny-tiny {
    font-weight: 100;
}

/*========End Page Headers=========*/

.col-image {
 position: relative;
 background: url('img/welcome.jpg') no-repeat center center/cover;
 height: 400px;
 filter: grayscale(20%);
}

.col-image::after {
    position: absolute;
    content: " ";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(15, 16, 15);
    opacity: .5;
}

.zed {
    position: absolute;
    z-index: 1;
    color: #fff;
}

.logo {
    width: 210px;
    transition: .2s ease-in-out;
}

.sponsor-box {
    display: flex;
    overflow: scroll;
    width: 90%;
    scroll-snap-type: x mandatory;
}

.sponsor-item {
    width: 200px;
    scroll-snap-align: start;
}

.banner {
    background: url('img/back.jpg') no-repeat center center/cover;
    height: 400px;
    margin: 10px;
}




.category-card {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 73, 143, 0.5);
    z-index: 1;
}

.category-card:hover::before {
    background: rgba(0, 73, 143, 0.8);
}

.category-card h3 {
    position: relative;
    z-index: 2;
}

