/********************
GENERAL
********************/
:root {
    --main: #22223b;
    --second: #1546e9;
    --accent: #f6e58d;
    --white: #ffffff;
    --bg1: #f8f9fa;
    --bg2: #4a4e69;
}

* {
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
  
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
  
body {
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg1);
    color: var(--accent);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
  
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--main);
    margin-bottom: 3rem;
}
  
/********************
NAVBAR
********************/
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: transparent;
    transition: background 0.4s;
}
  
.navbar.scrolled {
    background: var(--main);
    box-shadow: 0 2px 8px rgba(35,39,47,0.08);
}
  
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.navbar-brand {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 1px;
}
  
.navbar-nav {
    display: flex;
    gap: 1.7rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
  
.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s;
    position: relative;
}
    
.nav-link.active,
.nav-link:hover {
    color: var(--accent);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.navbar-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
  
.navbar-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/********************
HERO CAROUSEL
********************/
.hero-carousel {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg1);
}
  
.carousel-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
    filter: blur(2px) brightness(0.75);
}
  
.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}
  
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}
  
.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.3rem;
    color: var(--main);
    background-color: var(--accent);
    padding: 0.5rem 2rem;
    display: inline-block;
    border-radius: 4px; 
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.9rem 2.3rem;
    border-radius: 4px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
  
.btn-primary {
    background: var(--main);
    color: var(--white);
    border: 2px solid var(--main);

}

.btn-primary:hover {
    background: var(--accent);
    color: var(--main);
    box-shadow: 0 4px 8px rgba(21, 70, 233, 0.2);
}
  
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--main);
    color: var(--white);
}
  
.carousel-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7rem;
    z-index: 4;
}
  
.carousel-dot {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
}

.carousel-dot.active {
    background: var(--accent);
    opacity: 1;
}

/********************
SERVICES
********************/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--main);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--bg2);
    line-height: 1.5;
}

/********************
ABOUT US
********************/
.about-section {
    background: var(--bg1);
    padding: 5rem 0 4rem 0;
}
  
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}
  
.about-content {
    flex: 1 1 350px;
    min-width: 300px;
}

.section-title {
    font-size: 2.3rem;
    color: var(--main);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.13rem;
    color: var(--bg2);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    font-size: 1.05rem;
    color: var(--bg2);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.7em;
}

.about-list li::before {
    content: "✔";
    color: var(--main);
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

.about-image {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 500px;
    max-width: 95vw;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(95,39,205,0.10);
    object-fit: cover;
}
  
/********************
TEAM
********************/
.team-section {
    background: var(--white);
    padding: 5rem 0 4rem 0;
}
  
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
  
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
}
  
.team-member {
    background: var(--bg1);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(95,39,205,0.08);
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    max-width: 320px;
    width: 100%;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
  
.team-member:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(95,39,205,0.13);
}
  
.team-member img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    border: 4px solid var(--main);
}
  
.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 0.3rem;
}
  
.team-role {
    font-size: 1.05rem;
    color: var(--bg2);
    margin-bottom: 0.7rem;
    font-weight: 500;
}
  
.team-bio {
    font-size: 0.98rem;
    color: var(--bg2);
    line-height: 1.5;
}

/********************
PORTFOLIO
********************/
.portfolio-section {
    background: var(--bg1);
    padding: 5rem 0 4rem 0;
}
  
.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
  
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}
  
.portfolio-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(95,39,205,0.08);
    overflow: hidden;
    max-width: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(95,39,205,0.13);
}
  
.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
  
.portfolio-info {
    padding: 1.5rem 1.2rem 2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    font-size: 1rem;
    color: var(--bg2);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.portfolio-link {
    color: var(--white);
    background: var(--main);
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.portfolio-link:hover {
    background: var(--second);
    color: var(--accent);
}

/********************
PRICING
********************/
.pricing-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch; 
}
  
.pricing-card {
    background: var(--bg1);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(95,39,205,0.08);
    border: 1.5px solid var(--bg2);
    max-width: 340px;
    width: 100%;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
  
.plan-title {
    font-size: 1.3rem;
    color: var(--main);
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    justify-content: center;
    text-align: center;
}
  
.plan-price {
    font-size: 2.1rem;
    color: var(--second);
    font-weight: bold;
    margin: 1.2rem 0 1.8rem 0;
    justify-content: center;
    text-align: center;
}
  
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
  
.plan-features li {
    color: var(--bg2);
    font-size: 1rem;
    margin-bottom: 0.7rem;
    padding-left: 1.2em;
    position: relative;
}
  
.plan-features li:before {
    content: "✔";
    color: var(--main);
    position: absolute;
    left: 0;
    font-size: 1em;
}
  
.pricing-btn {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}
  
.btn-pricing {
    background: var(--main);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 10px rgba(95,39,205,0.10);
    transition: background 0.2s, color 0.2s, transform 0.18s;
    cursor: pointer;
    letter-spacing: 0.5px;
}
  
.btn-pricing:hover {
    background: var(--second);
    color: var(--accent);
    transform: translateY(-3px) scale(1.04);
}
  
.pricing-card.featured {
    border: 2.5px solid var(--main);
    box-shadow: 0 8px 32px rgba(95,39,205,0.13);
    transform: scale(1.04);
    z-index: 2;
}

  
/********************
CONTACT
********************/
.contact-section {
    background: var(--bg1);
    padding: 5rem 0 4rem 0;
}
  
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}
  
.contact-description {
    font-size: 1.1rem;
    color: var(--bg2);
    margin-bottom: 2.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    align-items: stretch;
}
  
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
  
.form-group label {
    font-size: 1rem;
    color: var(--main);
    margin-bottom: 0.4rem;
    font-weight: 600;
}
  
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1.5px solid var(--bg2);
    font-size: 1rem;
    color: var(--bg2);
    background: var(--white);
    margin-bottom: 0.2rem;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border: 1.5px solid var(--main);
    outline: none;
}

/********************
FOOTER
********************/
.footer {
    background: var(--main);
    color: var(--white);
    padding: 2.5rem 0 1.2rem 0;
    text-align: center;
}
  
.footer-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
  
.footer-logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}
  
.footer-message {
    color: var(--accent);
    font-size: 1.06rem;
    margin-bottom: 0.5rem;
}
  
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin: 0.5rem 0 0.7rem 0;
}
  
.footer-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
}
  
.footer-link:hover {
    color: var(--accent);
    opacity: 1;
}
  
.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.footer-social-link {
    color: var(--white);
    opacity: 0.8;
    transition: color 0.2s, opacity 0.2s;
    font-size: 1.2rem;
}

.footer-social-link:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-copy {
    color: var(--accent);
    font-size: 0.97rem;
    margin-top: 1.3rem;
    opacity: 0.75;
    letter-spacing: 0.2px;
}
  