
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #000;
    --badge-color: #606060;
    --secondary-color: #fff;
    --border-color: #ccc;
    --background-color: #c2bebe;
    --logo-color: #0f7a9c;
    --accent-color: #0003a5;
    --contact: #060722;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-right.active {
    opacity: 1;
    transform: translateX(0);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
}

.logo h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--logo-color);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    animation: slideDown 0.8s ease-out;
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-80%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    transition: .3s ease-out;
}

nav a::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%);
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s ease-out;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-color);
}

.nav-btn {
    margin-left: 30px;
}

.nav-btn a {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn a:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn a::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    min-height: 80vh;
    gap: 3rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8%;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    background-color: var(--badge-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    align-items: center;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out 0.3s forwards;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out 0.3s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    text-align: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    flex-wrap: wrap;
}

.primary-btn  {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.primary-btn a {
    text-decoration: none;
    color: var(--secondary-color);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.secondary-btn a{
    text-decoration: none;
}
.secondary-btn a{
    color: var(--secondary-color);
}

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.hero-image {
    position: relative;
    margin-left: 0;
    justify-self: center;
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.5s forwards;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offers {
    background-color: var(--secondary-color);
    padding: 4rem 8%;
}

.offer-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.offers h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.offers p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    border: 1px solid var(--border-color);
    padding: 2rem;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.offer-cards h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-card .material-symbols-outlined {
    font-size: 25px;
    color: var(--secondary-color);
    width: fit-content;
    padding: 0.7rem;
    border-radius: 15px;
    background-color: var(--primary-color);
    display: block;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.offer-card:hover .material-symbols-outlined {
    transform: scale(1.1);
}

.features {
    padding: 4rem 8%;
}

.features-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.features p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    position: relative;
    border-radius: 15px;
    height: 360px;
    cursor: pointer;
    overflow: hidden;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-card p,
.feature-card h3 {
    position: relative;
    z-index: 3;
}

.feature-card p {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.4s ease;
}

.feature-card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.about {
    flex-wrap: wrap;
    padding: 4rem 8%;
    background-color: var(--secondary-color);
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-image,
.about-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.award {
    background-color: var(--badge-color);
    border-radius: 7px;
    padding: 1rem;
    color: var(--secondary-color);
    text-align: center;
}

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

.award p {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.award h3 {
    font-size: 1rem;
    font-weight: 500;
}

.contact-section {
    background-color: #010225;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
    padding: 4rem 8%;
}

.contact-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-content p {
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details .detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.detail .material-symbols-outlined {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 24px;
}

.detail p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 4px;
}

.contact-form {
    background: #d4d4d4;
    border-radius: 15px;
    padding: 2rem;
    color: #000;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-radius: 8px;
    padding: 12px;
    background: #7a7a7a;
    color: #f1f1f1;
    outline: none;
    font-family: "Poppins", sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #fff;
    opacity: 0.9;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

.contact-form button {
    background: #0003a5;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0f7a9c;
}

footer {
    background-color: var(--secondary-color);
    padding: 4rem 8%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-brand {
    color: var(--logo-color);
}

.footer-brand img {
    width: 60px;
    margin-bottom: 10px;
}

.footer h3,
h4 {
    margin-bottom: 10px;
}

.footer-services p,
.sections p {
    margin-bottom: 8px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-services p:hover,
.sections p:hover {
    color: var(--accent-color);
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: var(--logo-color);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE STYLES */

/* Tablet */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        padding: 3rem 5%;
        gap: 2rem;
    }
    
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    .nav-btn {
        margin-left: 0;
        width: 100%;
    }
    
    .nav-btn a {
        display: block;
        text-align: center;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
        min-height: auto;
    }
    
    .hero-image {
        order: -1;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons button {
        width: 100%;
        justify-content: center;
    }
    
    .offers h2,
    .features h2 {
        font-size: 2rem;
    }
    
    .offer-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        height: 300px;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about-image,
    .about-content {
        flex: 1 1 100%;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand img {
        margin: 0 auto 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo h2 {
        font-size: 18px;
    }
    
    .logo img {
        width: 40px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .offers,
    .features,
    .about {
        padding: 3rem 5%;
    }
    
    .offers h2,
    .features h2 {
        font-size: 1.6rem;
    }
    
    .offer-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
}