/* Header Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f3f4f6" width="1200" height="800"/><circle cx="600" cy="200" r="150" fill="%23fbbf24" opacity="0.3"/><circle cx="300" cy="400" r="100" fill="%23fbbf24" opacity="0.2"/><circle cx="900" cy="500" r="120" fill="%23fbbf24" opacity="0.25"/></svg>') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    margin-top: 100px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 30px;
}
.section-content {
    margin-bottom: 30px;
}
/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e4c590;
    font-weight: bold;
}

.column ul {
    list-style: none;
    margin-top: 15px;
}

.column ul li {
    padding: 8px 0;
}

.column ul li:before {
    content: "• ";
    font-weight: bold;
    margin-right: 10px;
}

/* Image Strip */
.image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
}

/* Main Image */
.main-image {
   width: 100%;
    /*min-height: 500px;*/
    margin-bottom: 40px;
    border-radius: 8px;
    position: relative;
}
.main-image img {
    /*height: 100%;*/
    /*max-height: 100%;*/
    /*position: absolute;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

/* Three Column Layout */
.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    text-align: left;
}

.feature-card h3 {
   margin-bottom: 15px;
    color: #e4c590;
}

/* Black CTA Section */
.cta-section {
    color: white;
    text-align: center;
    padding: 80px 50px;
    background-color: #0e0d0c;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
}

/* Gallery */
.gallery {
}
.gallery img {
    width: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.contact-info a {
    text-decoration: none;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #E5E7EB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
}

/* Social Media Section */
.social-section {
    color: white;
    text-align: center;
    padding: 60px 50px;
    background-color: #0e0d0c;
}
.social-section h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
/* Blog Section */
.blog-section {
    padding: 60px 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-section .section-title {
    text-align: center;
}
.blog-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.blog-post {
    background: #0e0d0c;
    border-radius: 8px;
    overflow: hidden;
}
.blog-post img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}
.blog-post-content {
    padding: 20px;
}
.blog-post h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-post a {
    text-decoration: none;
    font-weight: bold;
}

.everythingSectionWrap{
    color: white;
    text-align: center;
    padding: 20px 50px;
    background-color: #0e0d0c;
}
.galrySectionWrap{
    background-color: #0e0d0c;
}
.about-section {
    background-image: url(https://alfahadnewcastle.com/alfahad/images/bnnnnner3.png);
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 20px;
}
.title-box .subtitle > span {
    padding-left: 20px;
}
.about-section:before {
    content: "";
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}
.image-strip img:hover {
    transform: scale(1.1);
}
.image-strip img {
    transition: .7s ease-in-out;
}
.image-strip > div {
    overflow: hidden;
}
.slick-dots {
    bottom: -30px;
}
.slick-dots li {
    border: 2px solid #e4c590;
    border-radius: 100%;
    width: 18px;
    height: 18px;
}
.slick-dots li button:before {
    color: #e4c590;
    opacity: 1;
    width: 15px;
    height: 15px;
    line-height: 16px;
    font-size: 10px;
}
.slick-dots li button {
    width: 15px;
    height: 15px;
    padding: 0;
}


.main-header {
background-color: #171819;
position: unset;
}
.main-header.fixed-header {
position: fixed;
}
.about-section {
min-height: 400px;
}

/* Responsive */

@media (max-width: 1200px) {
    .about-section {
        background-size: cover;
        align-items: center;
        justify-content: center;
        
        /*background-image: url(https://alfahadnewcastle.com/alfahad/images/BannerMobile.png);*/
        background-repeat: no-repeat;
        background-position: left;
    }
}
@media (max-width: 768px) {
    .about-section {
        background-position: right;
    }
    .two-column,
    .three-column,
    .contact-section,
    .blog-posts {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    section {
        padding: 40px 20px;
    }
    
    
    .about-section .title-box {
        margin-top: 50px !important;
    }
    .title-box .subtitle {
        line-height: unset;
    }
    .auto-container {
        padding: 0 !important;
        margin: 0 !important;
    }
    .main-header .auto-container {
        padding: 0 20px !important;
    }
    .image-strip {
        margin-bottom: 0;
    }
    .privatehire-section section {
        padding-left: 0;
        padding-right: 0;
    }
    .main-image {min-height: unset;}
    .main-image img {
        object-fit: cover;
        position: unset;
    }
    section.everythingSectionWrap {
        padding-left: 20px;
        padding-right: 20px;
    }
    .galrySectionWrap {
        padding: 30px 20px 20px !important;
    }
    
}
@media (max-width: 450px) {
.about-section {
min-height: 250px;
}
}