/* Google Font */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
}

/* Navbar */
.navbar {
    background: #ff6600;
    color: #fff;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.navbar .logo {
    font-size: 24px;
    font-weight: 700;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #000;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    background: #ff8c00;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ff8c00;
    transform: scale(1.05);
}

/* Highlight Section */
.highlight {
    padding: 60px 10%;
    text-align: center;
}

.highlight h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.highlight p {
    font-size: 18px;
    color: #555;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* About Page Styles */
.hero.small-hero {
    height: 300px;
    background: url('images/about-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-section {
    padding: 60px 20px;
    background-color: #fff8f0;
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff8c00;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section Shared */
.hero.small-hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/about-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background-color: #fff8f0;
}

.about-section .container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff8c00;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.about-text .btn:hover {
    background-color: #e67600;
}

.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    background-color: #ffe5c4;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn-dark {
    background-color: #333;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-dark:hover {
    background-color: #000;
}

.hero {
    background-color: #ff8c00;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.services-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #ff8c00;
    margin-bottom: 10px;
}

.footer {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

.services-hero {
    background: linear-gradient(to right, #ff8c00, #ffa500);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: auto;
    animation: fadeIn 1.2s ease-in-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title span {
    color: #fff200;
    /* yellowish white contrast */
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects-hero {
    background: linear-gradient(to right, #ffa500, #ffb733);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.projects-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.projects-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-left: 6px solid #ffa500;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.project-card p {
    color: #777;
    font-size: 14px;
}

.team-hero {
    background: linear-gradient(to right, #ffa500, #ffb733);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.team-hero .hero-title {
    font-size: 42px;
    font-weight: bold;
}

.team-hero .hero-title span {
    color: #fff;
    border-bottom: 4px solid #fff;
}

.team-hero .hero-subtitle {
    margin-top: 10px;
    font-size: 18px;
}

.team-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.team-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-left: 6px solid #ffa500;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.team-card h3 {
    color: #333;
    margin-bottom: 5px;
}

.team-card .role {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.team-card .phone {
    font-size: 14px;
    color: #555;
}

.contact-hero {
    background: linear-gradient(to right, #ffa500, #ffb733);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 42px;
    font-weight: bold;
}

.contact-hero .hero-title span {
    color: #fff;
    border-bottom: 4px solid #fff;
}

.contact-hero .hero-subtitle {
    margin-top: 10px;
    font-size: 18px;
}

.contact-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 45%;
}

.contact-info h2 {
    margin-bottom: 15px;
    color: #333;
}

.contact-info p {
    margin: 10px 0;
    color: #555;
    font-size: 16px;
}

.contact-form {
    flex: 1 1 45%;
}

.contact-form h2 {
    margin-bottom: 15px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form button {
    background: #ffa500;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #ff8500;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
}

/* About Page Hero Section with Background */
.small-hero {
    background-image: url("images/heroo.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.small-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
}

.small-hero .hero-content {
    position: relative;
    z-index: 1;
}

.small-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.small-hero p {
    font-size: 20px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.services-hero {
    background-image: url('images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.services-hero {
    background-image: url('images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.services-hero {
    background-image: url("images/services-bg.jpg");
}

.projects-hero {
    background-image: url("images/project-bg.jpg");
}

.hero-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-title span {
    color: orange;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

/* TEAM PAGE STYLES */

/* Team Hero Section with Background Image */
.team-hero {
    background-image: url("images/team-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-title span {
    color: orange;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #333;
}

.team-card .role {
    font-style: italic;
    color: #777;
    margin-bottom: 5px;
}

.team-card .phone {
    font-weight: bold;
    color: orange;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts and Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar {
    background-color: #222;
    color: #fff;
    padding: 15px 0;
}

.navbar .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
}

.navbar nav {
    float: right;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.navbar ul li a.active,
.navbar ul li a:hover {
    color: #f2c200;
}

/* Hero Section */
.contact-hero {
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 48px;
    font-weight: bold;
}

.contact-hero .hero-title span {
    color: #f2c200;
}

.contact-hero .hero-subtitle {
    font-size: 20px;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info,
.contact-form {
    flex: 1 1 45%;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 20px;
    color: #222;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form form button {
    padding: 12px 25px;
    background-color: #f2c200;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form form button:hover {
    background-color: #d1a600;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
    margin-top: 40px;
}

/* WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .navbar .logo,
    .navbar nav {
        float: none;
        text-align: center;
    }

    .navbar ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}