:root {
    --primary-orange: #ff7900;
    --bg-light: #f4f7f6;
    --text-dark: #333;
    --text-gray: #777;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --white: #ffffff;
    --border-light: #ececec;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.15rem;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 20px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

@media (max-width: 768px) {
    .nav-arrow {
        padding: 15px 10px;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.2);
    }
    .left-arrow { left: 10px; }
    .right-arrow { right: 10px; }
}

.hero-content1 {
    position: relative;
    z-index: 5;
    text-align: center;
}

.services-section {
    padding: 50px 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    position: relative;
    height: 250px;
    background: white;
    overflow: visible;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.card-icon {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 2;
    font-size: 30px;
}

.card-content {
    padding: 50px 20px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-button {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
    bottom: 0px;
    margin-top: auto;
}

.card-button:hover {
    background-color: #e66d00;
}

.results-showcase-alt {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding-bottom: 70px;
}

.results-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.results-inner-alt {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
}

.results-title-alt {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: white;
}

.results-grid-alt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: stretch;
}

.results-item-alt {
    background: rgba(37, 43, 61, 15%);
    backdrop-filter: blur(5px);
    border: 1px solid rgb(255 255 255 / 86%);
    border-radius: 12px;
    padding: 40px 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 1px 1px 1px rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.results-item-alt:hover {
    transform: translateY(-8px);
    background: rgba(44, 51, 73, 20%);
}

.results-icon-wrap-alt img {
    width: 100%;
    height: max-content;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    object-fit: contain;
    min-height: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-data-alt {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: auto;
}

.results-desc-alt {
    font-size: 0.95rem;
    color: #e5e7eb;
    min-height: 3em; 
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.blog-section {
    padding: 70px 20px;
}

.blog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.priority-blog-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.priority-blog-card .blog-img-box {
    width: 50%;
    min-height: 350px;
}

.priority-blog-card .blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.priority-blog-card .blog-info-box {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-title { font-size: 1.8rem; margin-bottom: 10px; color: #1a1e2e; }
.blog-meta { color: #ff7900; font-size: 0.85rem; margin-bottom: 15px; font-weight: 600; }
.blog-text { color: #666; line-height: 1.6; margin-bottom: 25px; }

.blog-main-btn {
    align-self: flex-start;
    background: #ff7900;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.small-blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.small-blog-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 180px;
}

.small-img-box { width: 40%; }
.small-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-info-box {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-title { font-size: 1.1rem; margin-bottom: 5px; color: #1a1e2e; }
.small-text { font-size: 0.85rem; color: #777; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.contact-showcase {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    color: #ffffff;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.contact-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 10;
}

.contact-main-title { font-size: 2.8rem; margin-bottom: 5px; font-weight: 800; padding-top: 0px;}
.contact-subtitle { font-size: 1.1rem; color: #cbd5e0; margin-bottom: 50px; }

.contact-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover { transform: translateY(-5px); }

.form-container {
    background: #112d6a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-title { font-size: 1.6rem; margin-bottom: 30px; text-align: center; color: #ffffff; }

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(30, 41, 67, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

form textarea { height: 150px; resize: none; }

.submit-btn {
    width: 100%;
    background: #ff7900;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover { background: #e66d00; }

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
    .priority-blog-card { flex-direction: column; }
    .priority-blog-card .blog-img-box,
    .priority-blog-card .blog-info-box { width: 100%; }
    .small-blogs-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-main-title { color: white; margin-top: 20px; }

    .hero-content1 {
        width: 80%;
        left: 10%;
    }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .results-grid-alt { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .small-blog-card {
        height: auto;
        flex-direction: column;
    }
    .small-img-box, .small-info-box { width: 100%; }
    .small-img-box { height: 150px; }
}

.contact-showcase {
    position: relative;
    padding: 50px 80px;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.contact-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 10;
}

.contact-main-title { font-size: 2.8rem; margin-bottom: 5px; font-weight: 800; }
.contact-subtitle { font-size: 1.1rem; color: #cbd5e0; margin-bottom: 50px; }

.contact-details-list { list-style: none; padding: 0; margin-bottom: 40px; }
.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-details-list a { color: #ffffff; text-decoration: none; }
.detail-icon { width: 30px; height: 30px; }

.social-links-row { display: flex; gap: 15px; flex-wrap: wrap; }
.social-icon {
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease;
}
.social-icon:hover { transform: translateY(-5px); }
.social-icon img { width: 100%; height: 100%; }

.form-container {
    background: #112d6a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.form-title { font-size: 1.6rem; margin-bottom: 30px; text-align: center; color: #ffffff; }

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(30, 41, 67, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}
form input::placeholder, form textarea::placeholder { color: #a0aec0; }
form textarea { height: 150px; resize: none; }

.form-group-row {
    display: flex;
    gap: 15px;
}

.submit-btn {
    width: 100%;
    background: #ff7300;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s ease;
}
.submit-btn:hover { background: #e66d00; }

@media (max-width: 1024px) {
    .contact-main-title { font-size: 2.2rem; }
}

@media (max-width: 850px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-col { text-align: center; }
    .contact-subtitle { margin-bottom: 30px; }
    .contact-details-list li { justify-content: center; }
    .social-links-row { justify-content: center; }
    
    .form-container { padding: 30px; }

    .contact-main-title { color: white; }
}

.services-section-title {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: max-content;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    margin-top: -10px;
    color: #ff6b00;
}

@media screen and (max-width: 1000px) {
    .results-grid-alt {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 740px) {
    .results-grid-alt {
        grid-template-columns: repeat(1, 1fr);
    }

    .results-icon-wrap-alt img {
        max-height: 200px;
    }

    .form-group-row {
        display: block;
    }
}

.reveal-section {
    opacity: 0 !important;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-section.active {
    opacity: 1 !important;
    transform: translateY(0);
}

.hero-content1 {
    position: absolute;
    top: 10%;
    transform: translateY(-10%);
    left: 20%;
    width: 60%;
}

.hero-content-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    filter: blur(3px);
    background-color: rgb(29 29 29 / 46%);
}

.hero-title1 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    color: white;
}

@media (max-width: 850px) {
    .hero-content1 {
        width: 80%;
        left: 10%;
    }

    .hero-title1 {
        font-size: 2rem;
    }
}

@media (max-width: 555px) {
    .hero-content1 {
        width: 80%;
        left: 10%;
    }

    .hero-title1 {
        font-size: 1.8rem;
    }
}

/* ==================== CONTACT SHOWCASE - ULTRA RESPONSIVE (down to 280px) ==================== */
.contact-showcase {
    position: relative;
    padding: 70px 15px 90px;
    overflow: hidden;
    color: #ffffff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.contact-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 55px;
    position: relative;
    z-index: 10;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-main-title {
    font-size: 2.75rem;
    line-height: 1.05;
    margin-bottom: 14px;
    font-weight: 800;
}

.contact-subtitle {
    font-size: 1.12rem;
    color: #cbd5e0;
    margin-bottom: 38px;
    line-height: 1.45;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.08rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-details-list li:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255,255,255,0.25);
}

.social-icon img {
    width: 100%;
    height: 100%;
}

/* ==================== FORM ==================== */
.form-container {
    background: #112d6a;
    padding: 40px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
}

form input, 
form textarea {
    width: 100%;
    padding: 15px 16px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #ff7900;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.2);
}

form textarea {
    height: 155px;
    resize: vertical;
    min-height: 110px;
}

.form-group-row {
    display: flex;
    gap: 14px;
}

.submit-btn {
    width: 100%;
    background: #ff7900;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.12rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #e66d00;
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE - DOWN TO 280px ==================== */

@media (max-width: 992px) {
    .contact-inner { gap: 45px; }
    .contact-main-title { font-size: 2.5rem; }
}

@media (max-width: 850px) {
    .contact-showcase {
        padding: 65px 15px 80px;
        min-height: auto;
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-col { text-align: center; }
    .contact-details-list li { justify-content: center; }
    .social-links-row { justify-content: center; }

    .form-container { padding: 38px 25px; }
}

@media (max-width: 600px) {
    .contact-main-title { font-size: 2.25rem; }
    .contact-subtitle { font-size: 1.05rem; }
    .form-container { padding: 35px 22px; }
}

@media (max-width: 480px) {
    .contact-showcase { padding: 55px 12px 70px; }
    
    .contact-main-title { font-size: 2.1rem; }
    .form-title { font-size: 1.5rem; }
    
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    .social-icon img { width: 100%; height: 100%; }
}

/* Extra small phones - 360px and below */
@media (max-width: 360px) {
    .contact-showcase { padding: 50px 10px 65px; }
    
    .contact-main-title { font-size: 1.95rem; }
    .contact-subtitle { font-size: 1rem; }
    
    .form-container { 
        padding: 30px 18px; 
        border-radius: 16px;
    }
    
    form input, form textarea {
        padding: 13px 14px;
        font-size: 0.97rem;
        margin-bottom: 13px;
    }
    
    .form-title { font-size: 1.45rem; }
    .submit-btn { padding: 15px; font-size: 1.08rem; }
}

/* Ultra small - 320px and below (including 280px) */
@media (max-width: 320px) {
    .contact-showcase { padding: 45px 8px 60px; }
    
    .contact-main-title { font-size: 1.82rem; }
    .contact-subtitle { font-size: 0.97rem; line-height: 1.4; }
    
    .contact-details-list li {
        font-size: 1.02rem;
        padding: 14px 0;
        gap: 12px;
    }
    
    .detail-icon { width: 26px; height: 26px; }
    
    .form-container { 
        padding: 26px 16px; 
    }
    
    form input, form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .form-title { font-size: 1.38rem; margin-bottom: 24px; }
    .submit-btn { 
        padding: 14px; 
        font-size: 1.05rem; 
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-icon img { width: 100%; height: 100%; }
}