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

:root {
    --primary-color: #3d57ff;
    --secondary-color: #2437b6;
    --accent-color: #FF6B35;
    --dark-color: #1A1B3A;
    --text-dark: #393c42;
    --text-light: #1e1e1f;
    --background-light: #F7FAFC;
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 0;
    background-color: #2D3748;
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

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

.header-social {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    gap: 1rem;
}

.header-social div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.header-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
}

.header-phone,
.header-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.header-phone i,
.header-email i {
    font-size: 0.8rem;
    opacity: 0.9;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-logo:hover {
    background-color: rgba(74, 95, 231, 0.05);
}

.logo-icon {
    background: var(--primary-color);
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    border-radius: 8px;
}

.logo-img:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 4px 16px rgba(74, 95, 231, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-top: 35px;
    color: var(--white);
}

.nav-link {
    text-decoration: none;
    color: var(--text-White);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta .cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.nav-cta .cta-button:hover {
    background: var(--text-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */

.colour-box {
    position: absolute; 
    left: -100px;
    top: 35%;
    transform: translateY(-50%);
    width: 20%;
    height: 70%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(61, 87, 255, 0.15), rgba(36, 55, 182, 0.25));
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(61, 87, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: colorBoxFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.colour-box::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 8px;
    opacity: 0.7;
    animation: colorBoxGlow 4s ease-in-out infinite alternate;
}

.colour-box:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(61, 87, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes colorBoxFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) translateX(15px);
        opacity: 1;
    }
}

@keyframes colorBoxGlow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.9;
    }
}
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 100px;
    position: relative;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: transparent;
}

.btn-primary:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit:contain;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02) translateY(-5px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--text-dark);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    animation: hero-statsFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-stats:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@keyframes hero-statsFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--background-light);
}

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

.section-header {
    margin-bottom: 2rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 24px;
}

.service-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.cta-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-info i {
    background: var(--primary-color);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cta-info div span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-info div strong {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-content i {
    font-size: 1.5rem;
}

.badge-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Privacy Notice Styling */
.privacy-notice {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    border: 4px solid var(--primary-color);
}

.privacy-notice p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-logo .logo-img {
    display: flex;
    align-items: center;
}

.footer-logo .logo-img img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.footer-logo:hover .logo-img img {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo .logo-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-logo .logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-text {
    text-align: center;
    opacity: 0.8;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

.footer-phone {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.footer-phone:hover {
    background: var(--text-light);
}

@media screen and (max-width: 1024px) {
 
    .colour-box {
        top: 35%;
    }
}



/* Medium Screen Styles */
@media (max-width: 992px) {
    .header-info {
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    
    .header-social {
        font-size: 0.8rem;
        gap: 0.75rem;
    }
    
    .header-social div {
        gap: 0.6rem;
    }
    
    .colour-box {
        top: 30%;
        width: 14%;
        height: 60%;
        left: -40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Tablet Styles */
@media (max-width: 896px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.8rem;
    }
    
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-link {
        color: var(--text-light);
    }
    
    .header-top {
        padding: 6px 0;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .header-social {
        font-size: 0.7rem;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .header-social div {
        gap: 0.5rem;
        align-items: center;
    }
    
    .social-link {
        padding: 4px 6px;
        font-size: 0.75rem;
    }
    
    .header-phone,
    .header-email {
        gap: 0.3rem;
        font-size: 0.75rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        margin-top: 0;
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
    }
    
    .nav-menu .nav-link {
        color: var(--text-dark);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.8rem 1.5rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background-color: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }
    
    .nav-cta {
        display: none;
    }
    
    .logo-img {
        height: 55px;
        max-width: 220px;
    }
    
    .nav-logo {
        padding: 4px 8px;
    }
    
    .nav-container {
        min-height: 70px;
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .colour-box {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero-image img {
        height: 300px;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
        animation: hero-statsFloat 4s ease-in-out infinite;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-main {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-logo .logo-img img {
        height: 40px;
        max-width: 160px;
    }
    
    .footer-logo .logo-main {
        font-size: 14px;
    }
    
    .footer-logo .logo-sub {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 4px 0;
    }
    
    .header-top .container {
        gap: 0.3rem;
        padding: 0 10px;
    }
    
    .header-info {
        font-size: 0.65rem;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .header-social {
        font-size: 0.65rem;
        gap: 0.3rem;
    }
    
    .header-social div {
        gap: 0.3rem;
    }
    
    .social-link {
        padding: 3px 4px;
        font-size: 0.65rem;
    }
    
    .header-phone,
    .header-email {
        gap: 0.2rem;
        font-size: 0.65rem;
    }
    
    .nav-container {
        min-height: 60px;
        padding: 0 10px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .nav-logo {
        padding: 2px 4px;
    }
    
    .hero {
        padding: 60px 0 40px;
        margin-top: 100px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.2rem;
        animation: hero-statsFloat 4s ease-in-out infinite;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .stat-label i {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .about,
    .services,
    .contact {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-phone {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .footer-logo .logo-img img {
        height: 35px;
        max-width: 140px;
    }
    
    .footer-logo .logo-main {
        font-size: 12px;
    }
    
    .footer-logo .logo-sub {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
    
    .footer-logo {
        gap: 8px;
    }
}

/* Ultra Small Screen Optimizations - 320px */
@media (max-width: 320px) {
    .header-top {
        padding: 2px 0;
    }
    
    .header-top .container {
        gap: 0.2rem;
        padding: 0 5px;
    }
    
    .header-info {
        font-size: 0.6rem;
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .header-social {
        font-size: 0.6rem;
        gap: 0.2rem;
    }
    
    .header-social div {
        gap: 0.2rem;
        font-size: 0.55rem;
    }
    
    .social-link {
        padding: 2px 3px;
        font-size: 0.6rem;
    }
    
    .header-phone,
    .header-email {
        gap: 0.1rem;
        font-size: 0.6rem;
    }
    
    .nav-container {
        min-height: 55px;
        padding: 0 5px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    .nav-logo {
        padding: 2px;
        gap: 6px;
    }
    
    .logo-main {
        font-size: 14px;
    }
    
    .logo-sub {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .hero {
        padding: 50px 0 30px;
        margin-top: 95px;
    }
    
    .hero-container {
        padding: 0 5px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .btn-primary {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 6px;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-image img {
        height: 200px;
        border-radius: 12px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        gap: 0.2rem;
    }
    
    .stat-label i {
        font-size: 0.7rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .about,
    .services,
    .contact {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .service-link {
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .contact-form {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.8rem;
        border-radius: 6px;
        min-height: 40px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .contact-item {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .about-image img {
        height: 250px;
        border-radius: 12px;
    }
    
    .experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .badge-content {
        gap: 0.8rem;
    }
    
    .badge-content i {
        font-size: 1.2rem;
    }
    
    .badge-number {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .privacy-notice {
        margin-top: 0.8rem;
        padding: 0.8rem;
        border-radius: 6px;
        border-width: 2px;
    }
    
    .privacy-notice p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer {
        padding: 1.2rem 0;
    }
    
    .footer-content {
        gap: 0.8rem;
        flex-direction: column;
    }
    
    .footer-phone {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 6px;
        gap: 6px;
        width: 100%;
        max-width: 250px;
    }
    
    .footer-logo .logo-img img {
        height: 30px;
        max-width: 120px;
    }
    
    .footer-logo .logo-main {
        font-size: 10px;
    }
    
    .footer-logo .logo-sub {
        font-size: 7px;
        letter-spacing: 0.5px;
    }
    
    .footer-logo {
        gap: 6px;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
    
    .footer-text p {
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 5px;
    }
    
    /* Navigation menu adjustments for ultra small screens */
    .nav-menu {
        top: 100px;
        padding: 1rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.6rem 1rem;
        margin: 0 0.5rem;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .bar {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
}

/* Global Mobile Optimizations */
@media (max-width: 768px) {
    /* Ensure minimum touch target sizes */
    .nav-link,
    .social-link,
    .btn-primary,
    .cta-button,
    .service-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve form accessibility on mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    /* Better spacing for content sections */
    .about,
    .services,
    .contact {
        padding: 60px 0;
    }
    
    /* Optimize images for mobile */
    .about-image img,
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better button styling for mobile */
    .btn-primary,
    .footer-phone {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(61, 87, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(61, 87, 255, 0.6);
    }
}

.logo-img {
    animation: logoFadeIn 0.8s ease-out;
}

.hero-text,
.about-text,
.service-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
