/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding {
    padding: 80px 0;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* Header 
.header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.logo h2 {
    color: #0a58ca;
}

.navbar ul {
    display: flex;
    gap: 25px;
}

.navbar a {
    color: #222;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover,
.navbar .active {
    color: #0a58ca;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero *
.hero {
    height: 90vh;
    background: url('../images/banners/banner1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    transition: 0.3s;
}

.primary-btn {
    background: #0a58ca;
    color: #fff;
}

.primary-btn:hover {
    background: #084298;
}

.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #000;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* About *
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
    color: #0a58ca;
}

.about-content p {
    margin-bottom: 20px;
}

/* Section Title *
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #0a58ca;
    margin-bottom: 10px;
}

/* Services *
.services {
    background: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    font-size: 45px;
    color: #0a58ca;
    margin-bottom: 20px;
}

/* Gallery *
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid img {
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

/* CTA *
.cta-section {
    background: #0a58ca;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: 38px;
}

.cta-content p {
    margin-bottom: 30px;
}

/* Footer *
.footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer h3 {
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #ccc;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #0a58ca;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}


----------------------------  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding {
    padding: 80px 0;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* Header */
.header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.logo h2 {
    color: #0a58ca;
}

.navbar ul {
    display: flex;
    gap: 25px;
}

.navbar a {
    color: #222;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover,
.navbar .active {
    color: #0a58ca;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.slider-controls span {
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
    color: #0a58ca;
}

.about-content p {
    margin-bottom: 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #0a58ca;
    margin-bottom: 10px;
}

/* Services */
.services {
    background: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    font-size: 45px;
    color: #0a58ca;
    margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid img {
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

/* CTA */
.cta-section {
    background: #0a58ca;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: 38px;
}

.cta-content p {
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer h3 {
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #ccc;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: #0a58ca;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}