/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0056b3;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: #e6f0fa;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 10px #1e90ff);
}

.nav-menu {
    position: relative;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1e90ff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    position: relative;
    top: -5px;
}


.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #1e90ff;
    text-shadow: 0 0 5px #1e90ff;
}

.header-button {
    padding: 0.5rem 1rem;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.header-button:hover {
    box-shadow: 0 0 10px #ff6f61;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: 51px;
        /* height: 100vh; */
        right: 0;
        min-width: 350px;
        background: #e6f0fa;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active .nav-list {
        display: flex;
    }
    .nav-menu.active .bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-menu.active .bar-2 {
        opacity: 0;
    }
    .nav-menu.active .bar-3 {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-button {
    padding: 0.75rem 1.5rem;
    background-color: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.hero-button:nth-child(2) {
    background-color: #ff6f61;
}

.hero-button:hover {
    box-shadow: 0 0 10px #1e90ff;
}

.hero-button:nth-child(2):hover {
    box-shadow: 0 0 10px #ff6f61;
}

.hero-contact {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #6d9fd3;
    border-radius: 50%;
    animation: ring 1s infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(15deg);
    }
    75% {
        transform: rotate(-15deg);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #ffffff;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #1e90ff;
    text-align: center;
    margin-bottom: 2rem;
}

.about-container {
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    background: #e6f0fa;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 150px;
    animation: sparkle 0.5s ease forwards;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.6s;
}

.stat-icon {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #1e90ff;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.stat-card h4 {
    font-size: 1rem;
    color: #1e90ff;
}

@keyframes sparkle {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #1e90ff;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    .about-text {
        padding-right: 2rem;
    }
}

/* Certified Section */
.certified {
    padding: 4rem 0;
    background: #0056b3;
    color: #fff;
}

.certified-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.certified-content {
    flex: 1;
}

.certified-form {
    flex: 1;
    background: transparent;
    padding: 2rem;
    border-radius: 10px;

}
.certified-form img{
    width: 100%;
}
.certified-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #1e90ff;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 2px solid #1e90ff;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ff6f61;
    box-shadow: 0 0 5px #ff6f61;
}

.form-button {
    padding: 0.75rem 1.5rem;
    background-color: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-button:hover {
    background-color: #ff6f61;
    box-shadow: 0 0 10px #ff6f61;
}

@media (min-width: 768px) {
    .certified-container {
        flex-direction: row;
        align-items: center;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #ffffff;
}

.services-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: #e6f0fa;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 0 15px #1e90ff;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1e90ff;
    margin: 0.5rem 0;
}

.services-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .services-slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Discount Section */
.discount {
    padding: 4rem 0;

    text-align: center;
    position: relative;
}

.discount::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 86, 179, 0.7);
}

.discount .container {
    position: relative;
}

.discount-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.discount-button {
    padding: 0.75rem 1.5rem;
    background-color: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.discount-button:nth-child(2) {
    background-color: #ff6f61;
}

.discount-button:hover {
    box-shadow: 0 0 10px #1e90ff;
}

.discount-button:nth-child(2):hover {
    box-shadow: 0 0 10px #ff6f61;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    background: #e6f0fa;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #1e90ff;
}

.pricing-card:hover {
    box-shadow: 0 0 15px #1e90ff;
}

.pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1e90ff;
    margin: 0.5rem 0;
}

.pricing-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial Section */
.testimonial {
    padding: 4rem 0;
    background: #0056b3;
    color: #fff;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    color: #333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 0 15px #1e90ff;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #1e90ff;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 1rem auto;
}

.testimonial-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1e90ff;
}

/* Accordion Section */
.accordion {
    padding: 4rem 0;
    background: #ffffff;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #0056b3;
}

.accordion-content {
    display: none;
    padding: 1rem;
    background: #e6f0fa;
    border-radius: 0 0 5px 5px;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Events Section */
.events {
    padding: 4rem 0;
    background: #0056b3;
    color: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    background: #e6f0fa;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #1e90ff;
}

.event-card:hover {
    box-shadow: 0 0 15px #1e90ff;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.event-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1e90ff;
    margin: 0.5rem 0;
}

.event-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.event-button:hover {
    box-shadow: 0 0 10px #1e90ff;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    background: #e6f0fa;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px #1e90ff;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-card:hover img {
    border: 3px solid #1e90ff;
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1e90ff;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #0056b3;
    color: #fff;
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-button:hover {
    box-shadow: 0 0 15px #1e90ff;
}

/* Footer */
.footer {
    background: #0056b3;
    color: #fff;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #1e90ff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.footer-links a:hover {
    color: #1e90ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #1e90ff;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}