@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}
/* Body Styling */
body {
    /*font-family: Arial, sans-serif;*/
}


/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://3wrnd.com/website-resources/services-page-3w/service_image.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    padding: 20px;
}

.hero h1 {
    font-family: 'Lato', sans-serif;    
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
	font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
}



/* About Us Section */
.about-us {
    background-color: white;
    padding: 50px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-family: 'Lato', sans-serif;
    text-align: center;
    color: #0073e6;  /* Main theme color */
}

h3 {
    margin-top: 20px;
    color: #333;
}

p {
    line-height: 1.6;
    margin: 10px 0;
}

/* Strengths Section */
.strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    
}

.strength-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.strength-item:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .strengths {
        grid-template-columns: 1fr;
    }
}





/* Social Media Section */
.social-media {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;  /* Light background */
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

/* Headline Styling */
.social-media h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;  /* Space between icons */
}

/* Individual Social Icon Links */
.social-icon {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Social Icon Images */
.social-icon img {
    width: 60px;  /* Icon size */
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ddd;  /* Light border */
    transition: border-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for Icons */
.social-icon:hover img {
    border-color: #0073e6;  /* Change border color on hover */
    transform: scale(1.1);   /* Slightly enlarge on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .social-media {
        padding: 30px 15px;
    }

    .social-icon img {
        width: 45px;  /* Adjust size for smaller screens */
        height: 45px;
    }
}



/* Content Section Container */
.content-section {
    padding: 10px 20px;
    background-color: #fff;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Text Container Styling */
.text-container {
    max-width: 600px;
}

.text-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.text-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.text-container-type2 p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Reverse Class for Swapping Image and Text */
.content-container.reverse {
    flex-direction: row-reverse;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .content-container.reverse {
        flex-direction: column;
    }

    .text-container {
        padding: 20px 0;
    }
}



/* Section Styling */
.video-content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

/* Video Container Styling */
.video-container {
    flex: 1;
    max-width: 600px;
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .video-content-section {
        flex-direction: column;
        text-align: center;
    }

    .video-container {
        margin-bottom: 20px;
    }
}



/* Button Group Styling */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cta-button {
    padding: 12px 20px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	width: 300px;
}

.cta-button:hover {
    background-color: #d35400;
    transform: scale(1.075); /* Slight zoom effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

