:root {
    --primary-color: #008AE6;
    --light-primary-color: #E6F4FF;
    --secondary-color: #005999;
    --light-secondary-color: #CCE7FF;
    --tertiary-color: #B3D9FF;
    --dark-color: #31333A;
    --light-color: #FFFFFF;
    --grey-color: #BBC7D4;
    --light-dark-color: #727272;
    --light-grey-color: #f5f5f5;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Inter', sans-serif;
}



 @keyframes appear {
        from {
          opacity: 0;
          clip-path: inset(100% 100% 0 0);
        }
        to {
          opacity: 1;
          clip-path: inset(0 0 0 0);
        }
      }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-grey-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement */
.top-announcement {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.announcement-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* Header & Navigation Styles */
.nav-container {
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-logo img {
    width: 130px;
}

/* Desktop Menu */
.nav-list {
    display: block;
}

.nav-list ul {
    display: flex;
    gap: 35px;
}

.nav-list ul li {
    list-style: none;
    position: relative;
}

.nav-list ul li a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-color);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list ul li a:hover,
.nav-list ul li a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--light-grey-color);
    font-weight: 500;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--light-primary-color);
    color: var(--primary-color);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    color: var(--dark-color);
    font-size: 18px;
    transition: color 0.3s;
}

.nav-icon:hover {
    color: var(--primary-color);
}

/* Hamburger Button */
.hamburger {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

/* Hero Section */
.hero {
    background: #008AE6;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    /*animation: bounce;
    animation-duration: 2s;*/
    animation: bounceInDown;
    animation-duration: 2s;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e6e6e6;
    max-width: 500px;
}

.hero-btn a{
    background-color: #fff;
}

.hero-btn a:hover{
    background-color: rgb(19, 70, 178);
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: zoomIn;
    animation-duration: 2s;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--light-dark-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--light-grey-color);
    
     animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--light-dark-color);
}

/* Specializations Section */
.specializations {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.specialization-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.specialization-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.card-content p {
    color: var(--light-dark-color);
    margin-bottom: 20px;
}

.cta-center {
    text-align: center;
}

/* Renewal Section */
.renewal {
    padding: 80px 0;
    background-color: white;
}

.renewal-content {
    display: flex;
    align-items: center;
    gap: 50px;
    
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    
}

.renewal-image {
    flex: 1;
    text-align: center;
}

.renewal-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.renewal-text {
    flex: 1;
    text-align: center;
}

.renewal-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.renewal-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-dark-color);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: var(--grey-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--grey-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--grey-color);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .renewal-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-align {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
        position: relative;
        left: 0;
        z-index: 101;
    }



    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-list.open {
        display: block;
    }

    .nav-list ul {
        display: block;
        width: 100%;
    }

    .nav-list ul li {
        border-bottom: 1px solid var(--light-grey-color);
        padding: 15px 0;
    }

    .nav-list ul li:last-child {
        border-bottom: none;
    }

    .nav-list ul li a {
        display: block;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        margin-left: 20px;
    }
    
    .nav-actions {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .specializations-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}