* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IRANSansWeb','Vazirmatn', sans-serif;
}

body {
    background: #0a1a2f;
    background-image: url('../images/bg-main.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.container {
    width: 90%;
    margin: auto;
}

/* Header */
.header {
    background: #090e4e;
    padding: 15px 0;
}

.header .container {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    justify-self: center;
    margin-right: 45%;
}
.logo img{
    width: 115px;
}

.shahabco-link{
    text-decoration: none;
    background-color: #f81c1c;
    border-radius: 15px;
    padding: 10px;
    color: #081425;
}
.shahabco-link:hover{
    color: #f81c1c;
    border: #f81c1c 1px solid;
    background: #ffffff07;
    font-weight: bold;
}

.menu{
    background-color: #081425;
    display: block;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    position: relative;
}

nav a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}
nav li:hover{
    border-bottom: #f81c1c 1.2px solid;
    border-radius: 30px;
    font-weight: bold;
}

.dropdown {
    display: none;
    position: absolute;
    background: #102a44;
    top: 40px;
    right: 0;
    min-width: 160px;
    z-index: 9999;
}

nav li:hover .dropdown {
    display: block;
}
h2{
    margin: 10px;
}

/* Slider */
.slider {
    margin: 20px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: 1s;
    border-radius: 15px;
}

.slider img.active {
    opacity: 1;
}

/* About */
.about {
    margin: 60px auto;
    padding: 60px 10px;
    text-align: center;
}
.about iframe{
    width: 100%;
    height: 400px;;
}

/* Products */
.products {
    background: #08142549;
    backdrop-filter: blur(5px);
    padding: 60px 0;
}

.product-list {
    display: flex;
    justify-content: space-between;
}

.product-card {
    width: 30%;
    backdrop-filter: blur(20px);
    padding: 15px;
    text-align: center;
    box-shadow: inset #090e4e 0px 1px 8px 2px;
}
.product-card:hover{
    box-shadow: #090e4e 0px 5px 10px 2px;
}

.img-con{
    width: 100%;
    height: 250px;
}

.product-card img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
}

/* Gallery */
.gallery {
    margin: 60px auto;
}

.gallery-grid {
    
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    max-height: 200px;
    object-fit: cover;
}
.gallery-grid img:hover{
    transform: scale(1.1);
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 10px;
    background: #fc4525;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
}
.btn:hover{
    background-color: #fc45255e;
    backdrop-filter: blur(20px);
    color: #fc4525;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #050d1a;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer h2{
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.footer-sec{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 15px;
}
.footer-sec a{
    text-decoration: none;
    color: #fff;
    margin: 4px;
}
.footer-sec a:hover{
    color: #f81c1c;
    font-weight: bold;
}
