.hero {
    height: 90vh;
    background: url('../images/banner/banner1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}



.hero-content {
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;

}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.about {
    padding: 60px 50px;
    background: #f5f5f5;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.products {
    padding: 60px 50px;
    text-align: center;
}

.products h2 {
    margin-bottom: 40px;
    font-size: 30px;
}

.product-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    width: 250px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-btn {
    margin-top: 30px;
}

.services {
    padding: 60px 50px;
    background: #0d1b2a;
    color: white;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 30px;
}

.services-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-box {
    width: 250px;
    padding: 20px;
    background: #1b263b;
    border-radius: 10px;
    transition: 0.3s;
}

.service-box:hover {
    background: #00b4d8;
}

.clients {
    padding: 60px 50px;
    text-align: center;
    background: #f5f5f5;
}

.clients h2 {
    margin-bottom: 30px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logos img {
    height: 60px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.client-logos img:hover {
    filter: grayscale(0%);
}

.cta {
    padding: 60px 20px;
    text-align: center;
    background: #00b4d8;
    color: white;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 20px;
}

.footer {
    background: #0d1b2a;
    color: white;
    padding: 40px 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.footer-col a:hover {
    color: #00b4d8;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.page-header {
    background: linear-gradient(rgba(13,27,42,0.8), rgba(13,27,42,0.8)),
                url('../images/banner/banner1.jpg') center/cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    letter-spacing: 1px;
}
.about-page {
    padding: 60px 20px;
    background: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-page h2 {
    font-size: 24px;
    color: #0d1b2a;
    margin-top: 30px;
    margin-bottom: 10px;
    border-left: 5px solid #00b4d8;
    padding-left: 10px;
}

.about-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.about-page ul {
    margin-top: 10px;
    padding-left: 20px;
}

.about-page ul li {
    margin-bottom: 8px;
    color: #333;
}

.products-page {
    padding: 60px 20px;
    background: #f5f5f5;
}

.product-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.product-card {
    width: 250px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    color: #0d1b2a;
}

.product-card a {
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-details {
    padding: 60px 20px;
    background: #f9f9f9;
}

.product-details-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
}

.product-info {
    flex: 1;
}

.product-info h2 {
    margin-bottom: 15px;
    color: #0d1b2a;
}

.product-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-info h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0d1b2a;
}

.product-info ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.product-info ul li {
    margin-bottom: 8px;
}

.contact-page {
    padding: 60px 20px;
    background: #f5f5f5;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #0d1b2a;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form button {
    background: #00b4d8;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0096c7;
}

.map {
    margin-top: 40px;
}
/* 
.map iframe {
    border-radius: 10px;
} */



.contact-left {
    flex: 1;
}

.map-box {
    flex: 1;
    min-height: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.services-page {
    padding: 60px 20px;
    background: #f9f9f9;
}

.service-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.service-item h2 {
    color: #0d1b2a;
    margin-bottom: 10px;
}

.clients-page {
    padding: 60px 20px;
    background: #f5f5f5;
}

.client-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.client-card {
    width: 180px;
    height: 120px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.client-card img {
    max-width: 80%;
    max-height: 60%;
    filter: grayscale(100%);
    transition: 0.3s;
}

.client-card img:hover {
    filter: grayscale(0%);
}


.gallery-page {
    padding: 60px 20px;
    background: #f9f9f9;
}

.gallery-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main {
    font-size: 27px;
    font-weight: bold;
    color: white;
}

.logo-text .sub {
    font-size: 18px;
    color: #00b4d8;
}
.logo img {
    height: 50px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

body {
    font-family: 'Poppins', sans-serif;
}

section {
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

}

h1, h2, h3 {
    letter-spacing: 0.5px;
}

.product-card:hover,
.service-box:hover,
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-card,
.service-box {
    transition: all 0.3s ease;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}