/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
header {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.logo:hover {
    color: #ffc107;
}

.logo-img-wrap {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo-img {
    height: 70px;
    max-width: 320px;
    width: auto;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav li {
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

nav a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-radius: 5px;
    color: #ffc107;
}

nav a.active {
    background: #ff6b35;
    border-radius: 5px;
}

.nav-action {
    background: #ff6b35 !important;
    margin-left: 10px;
    border-radius: 5px;
}

.nav-action:hover {
    background: #e55a2b !important;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero.hero-with-slider {
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease-out;
    font-weight: 900;
    letter-spacing: 1px;
}

.hero .subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffc107;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #ff6b35;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: transparent;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #003366;
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2, .section-title {
    font-size: 42px;
    margin-bottom: 50px;
    color: #003366;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: #555;
    font-size: 16px;
}

.about-text strong {
    color: #ff6b35;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
}

.services h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #003366;
    font-weight: 900;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 4px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    background: #fff4e6;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    font-size: 15px;
}

.service-card a {
    display: inline-block;
    margin-top: 15px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    z-index: 2;
}

.service-card a:hover {
    color: #003366;
}

/* ===== Banner Slider ===== */
.hero-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    height: 100vh;
}

.hero-slider-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.hero-slider-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.4);
}

/* Hero Content Overlay */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(0, 51, 102, 0.3);
}

.hero-content-overlay .hero-content {
    width: 100%;
    color: white;
    text-align: center;
}

.hero-content-overlay .hero-content h1 {
    color: white;
}

.hero-content-overlay .hero-content p {
    color: rgba(255, 255, 255, 0.95);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #ff6b35;
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255, 107, 53, 0.8);
}

/* Slider Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 51, 102, 0.6);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 5;
    transition: all 0.3s;
    border-radius: 5px;
}

.slider-nav:hover {
    background: rgba(255, 107, 53, 0.9);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #003366;
    font-weight: 900;
    letter-spacing: 1px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 300px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 107, 53, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-text {
    color: white;
    text-align: center;
}

.portfolio-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.portfolio-text p {
    font-size: 14px;
    color: #ffc107;
}

/* ===== Emergency Section ===== */
.emergency {
    background: linear-gradient(135deg, #ff6b35 0%, #ff5220 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.emergency-content {
    position: relative;
    z-index: 2;
}

.emergency h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.emergency p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.phone-display {
    font-size: 32px;
    font-weight: 900;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

/* ===== Partners Section ===== */
.partners {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.partners h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #003366;
    font-weight: 900;
    letter-spacing: 1px;
}

.partners-slider-container {
    width: 100%;
    overflow: hidden;
    background: white;
    border-radius: 15px;
    padding: 30px 0;
}

.partners-slider-wrapper {
    display: flex;
    animation: scrollLogos 20s linear infinite;
    gap: 30px;
    padding: 0 30px;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-slider-wrapper:hover {
    animation-play-state: paused;
}

.partner-logo {
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    min-width: 180px;
    min-height: 120px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 140px;
    height: 80px;
}

.partner-logo:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
    transform: scale(1.05);
}

/* ===== About Highlight Section ===== */
.about-highlight {
    padding: 80px 0;
    background: white;
}

.about-highlight-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
}

.about-highlight-visual {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    width: 100%;
    align-self: stretch;
}

.about-highlight-visual img {
    width: 90%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.circular-container {
    position: relative;
    width: 450px;
    height: 450px;
}

.orbital-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orange-ring {
    width: 480px;
    height: 480px;
    border-color: #ff6b35;
}

.blue-ring {
    width: 380px;
    height: 380px;
    border-color: rgba(0, 51, 102, 0.3);
}

.circle-image {
    display: none;
}

.main-image {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

.bottom-left {
    display: none;
}

.bottom-right {
    display: none;
}

.about-highlight-text {
    animation: slideInUp 0.8s ease-out;
}

.about-highlight-label {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-highlight-text h2 {
    font-size: 38px;
    color: #003366;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-highlight-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-check {
    color: #ff6b35;
    font-size: 20px;
    font-weight: 700;
    min-width: 25px;
    margin-top: 2px;
}

.feature-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.feature-text strong {
    color: #003366;
    font-weight: 700;
}

/* ===== Stats Section ===== */
.stats {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.8s ease-out;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffc107;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #003366;
    font-weight: 900;
    letter-spacing: 1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    color: #ff6b35;
    min-width: 50px;
    text-align: center;
}

.contact-text h3 {
    color: #003366;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.contact-text p {
    color: #666;
    font-size: 15px;
}

.contact-text a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #003366;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #003366;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #ff5220);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* ===== Footer ===== */
footer {
    background: #003366;
    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 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #ffc107;
}

.footer-section p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: #ffc107;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: #ff6b35;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 18px;
}

.social-links a:hover {
    background: #ffc107;
    color: #003366;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 14px;
}

/* ===== Animations ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 40px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-list li::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-list li:last-child::after {
    content: '';
    margin-left: 0;
}

.breadcrumb-list a {
    color: #ff6b35;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: #003366;
}

/* ===== Blog Section ===== */
.blog {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.07);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
    margin-bottom: 14px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-body h3 {
    color: #003366;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #ff6b35;
    padding: 9px 20px;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.blog-card-link:hover {
    background: #ff6b35;
    color: white;
}

/* Blog page - article detail */
.blog-hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

.blog-page {
    padding: 80px 0;
    background: white;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-article-full {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.09);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #ff6b35;
}

.blog-article-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.blog-article-full .blog-card-image {
    height: 240px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider-wrapper {
        height: 450px;
    }

    .hero-slider-overlay h2 {
        font-size: 32px;
    }

    .hero-slider-overlay p {
        font-size: 16px;
    }

    .slider-nav {
        padding: 10px 15px;
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-highlight-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-grid,
    .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .circular-container {
        width: 350px;
        height: 350px;
    }

    .orange-ring {
        width: 380px;
        height: 380px;
    }

    .blue-ring {
        width: 300px;
        height: 300px;
    }

    .main-image {
        width: 280px;
        height: 280px;
    }

    .about-highlight-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-slider-wrapper {
        height: 360px;
    }

    .hero-slider-overlay h2 {
        font-size: 24px;
    }

    .hero-slider-overlay p {
        font-size: 14px;
    }

    .slider-nav {
        padding: 8px 12px;
        font-size: 16px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 13px;
    }

    .about-text h3 {
        font-size: 22px;
    }

    .contact-form {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .circular-container {
        width: 220px;
        height: 220px;
    }

    .orange-ring {
        width: 240px;
        height: 240px;
    }

    .blue-ring {
        width: 180px;
        height: 180px;
    }

    .main-image {
        width: 160px;
        height: 160px;
    }

    .about-highlight-text h2 {
        font-size: 22px;
    }

    .about-highlight {
        padding: 60px 0;
    }
}
