/* ============================================
   SILVERLINE - BOLD & CREATIVE DESIGN
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   CONTAINER & UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: #000000;
    box-shadow: 0 24px 60px rgba(7, 36, 86, 0.18);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    color: #fff;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo img {
    width: 130px;
    max-height: 55px;
    object-fit: cover;
}

.brand-name {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 400;
    transition: all 0.25s ease;
    color: rgba(255, 255, 255, 0.92);
    padding: 10px 0;
    letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.45));
    transition: width 0.3s ease;
    border-radius: 999px;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
/****
   min-height: 100vh;
*****/
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(226, 232, 240, 0.3) 100%);

}

.hero-content {
    max-width: 600px;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;

    background-clip: text;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 300px;
    animation: slideInRight 0.8s ease-out;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.orb1 {
    width: 100%;
    top: -50px;
    right: 0;
    animation: float 6s ease-in-out infinite;

}
.orb1 img{
    margin: auto;
    display: flex;
    width: 100%;
}


/**
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
***/
/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 10px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff5f7 100%);
}

.features h5 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    color:#ffc107;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    color: white;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: 60px 20px;
    color: white;
    text-align: center;
    background-color:goldenrod;
    /*efbfo4     #ffc107*/
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-section {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
   
    -webkit-background-clip: text;
    background-clip: text;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.accent-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 60px;
    border-radius: 15px;
    font-size: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.mission-vision {
    padding: 20px;
    background:white;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    color: white;
    background-color: black;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    padding: 80px 20px;
}

.team h2 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
   background-color: #000000;
    transition: all 0.3s ease;
    color: white;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-member p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member small {
    color: var(--text-light);
    font-size: 13px;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values {
    padding: 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff5f7 100%);
}

.values h2 {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: #ffc107;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card li {
    padding: 8px 0;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.service-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff5f7 100%);
}

.process h2 {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    background-color: #ffc107;
    border-radius: 20px;
    padding: 5px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 15px;
}

.process-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
}

.process-arrow {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-section {
    padding: 80px 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-height: 350px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.portfolio-image {
   padding: 10px;
align-items: center;
justify-content: center;
}

.portfolio-image img{   
    margin: auto;
    width: 200px;
    height: 100px;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.tech-stack {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tech {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.view-project {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-project:hover {
    color: var(--accent);
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff5f7 100%);
}

.results h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.result-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
}

.result-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.result-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: 80px 20px;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    background: linear-gradient(to right, var(--primary), var(--accent));
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-date {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.category,
.read-time {
    font-size: 12px;
    color: var(--text-light);
}

.category {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--primary);
    font-weight: 600;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent);
}

.blog-sidebar {
    min-width: 300px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 10px;
}

.sidebar-widget a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sidebar-widget a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form input {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

.subscribe-form button {
    padding: 10px 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: black;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff5f7 100%);
}

.faq h2 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 16px;
    color: #ffc107;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color:black ;
    font-size: 14px;
    line-height: 1.6;
}

/*=============================
pay
===========================*/
.paycontainer{
   display: flex;
    justify-content: center;
    align-items: center;
}
.paycontainer h4{
    text-align: center;
    text-transform: capitalize;
    margin-top: 10px;
}

.paycontainer p{
    text-align: center;
    text-transform: capitalize;
}
.paycontainer label{
    text-transform: capitalize;

}
.paycontainer input{
    border: none;

}
.paycontainer button{
    border-radius: 20px;
    padding: 5px;
    text-transform: capitalize;
    margin-top: 10px;
    

}


/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #000000;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
   color:goldenrod;
}

.footer-section p {
    color: white;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    color: white;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color:white;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-visual {
        width: 250px;
        height: 250px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        width: 100%;
        background: rgba(8, 20, 62, 0.98);
        color: white;
        gap: 0;
        padding: 12px 0;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        width: 100%;
        display: block;
        padding: 6px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-grid,
    .mission-vision .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .accent-box {
        height: 200px;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        min-width: auto;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .features h2,
    .team h2,
    .values h2,
    .process h2,
    .results h2,
    .cta h2,
    .faq h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .features-grid,
    .services-grid,
    .portfolio-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
