/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.nav-profile-img:hover {
    border-color: #333;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #333;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-greeting {
    display: block;
    color: #666;
    font-size: 2.5rem;
}

.hero-name {
    display: block;
    color: #333;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #555;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    width: 150px;
    text-align: center;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 10%;
    width: 150px;
    text-align: center;
    animation-delay: 4s;
}

.card-header {
    margin-bottom: 1rem;
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.card-dots span:first-child {
    background: #ff5f56;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:last-child {
    background: #27ca3f;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.floating-card h4 {
    font-size: 1rem;
    color: #333;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Featured Work Section */
.featured-work {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

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

.work-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.work-item-large {
    grid-column: span 2;
}

.work-preview {
    padding: 2rem;
    background: #f8f9fa;
}

.browser-mockup {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.browser-header {
    background: #f1f3f4;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:first-child {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:last-child {
    background: #27ca3f;
}

.browser-url {
    background: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

.browser-content {
    height: 200px;
    position: relative;
}

/* Agency Preview */
.agency-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
}

.agency-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.agency-logo {
    font-weight: 600;
    font-size: 1.1rem;
}

.agency-menu {
    display: flex;
    gap: 4px;
}

.agency-menu span {
    width: 20px;
    height: 2px;
    background: white;
}

.agency-hero h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.agency-cta {
    width: 100px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

/* Hostmour Preview */
.hostmour-preview {
    background: #1a1a1a;
    color: white;
    padding: 1.5rem;
}

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

.hostmour-logo {
    color: #4ade80;
    font-weight: 600;
}

.hostmour-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hostmour-features {
    display: flex;
    gap: 8px;
}

.feature-item {
    width: 60px;
    height: 8px;
    background: #4ade80;
    border-radius: 4px;
}

/* Method Preview */
.method-preview {
    display: flex;
    background: #f8fafc;
}

.method-sidebar {
    width: 80px;
    background: #1e293b;
    padding: 1rem 0.5rem;
}

.method-logo {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.method-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    height: 8px;
    background: #475569;
    border-radius: 4px;
}

.method-main {
    flex: 1;
    padding: 1rem;
}

.method-header {
    height: 20px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-block {
    height: 40px;
    background: #f1f5f9;
    border-radius: 6px;
}

/* Adani Preview */
.adani-preview {
    background: #f5f5f5;
    padding: 1.5rem;
}

.adani-header {
    margin-bottom: 1.5rem;
}

.adani-logo {
    font-weight: 600;
    color: #333;
}

.adani-hero {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.adani-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-radius: 50%;
}

.adani-text h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.adani-text p {
    color: #666;
    font-size: 0.9rem;
}

/* News Preview */
.news-preview {
    background: white;
    padding: 1.5rem;
}

.news-header {
    margin-bottom: 1.5rem;
}

.news-logo {
    font-weight: 600;
    color: #dc2626;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
}

.news-item {
    background: #f3f4f6;
    border-radius: 6px;
    height: 60px;
}

.news-item.large {
    grid-row: span 2;
    height: 128px;
}

/* Urban Preview */
.urban-preview {
    background: #000;
    position: relative;
    overflow: hidden;
}

.urban-bg {
    background: linear-gradient(45deg, #fbbf24, #000);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.urban-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.urban-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.urban-cta {
    width: 80px;
    height: 30px;
    background: #fbbf24;
    border-radius: 4px;
    margin: 0 auto;
}

.work-info {
    padding: 1.5rem;
}

.work-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.work-info p {
    color: #666;
    margin-bottom: 1rem;
}

.work-tag {
    background: #f3f4f6;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-wrapper.cyber-security {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.icon-wrapper.web-development {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.service-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: #f3f4f6;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.profile-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.stat label {
    font-size: 0.8rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.method-text p {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #333;
}

/* Contact Form Success Overlay */
.form-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.success-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: successSlideIn 0.5s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.success-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-content .btn-primary {
    margin-top: 1rem;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
}

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

.footer-content p {
    margin: 0;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #666;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .work-item-large {
        grid-column: span 1;
    }
    
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .service-item {
        padding: 30px 20px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 14px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper svg {
        width: 32px;
        height: 32px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
        position: relative;
    }
    
    .floating-card {
        position: absolute;
        background: white;
        border-radius: 10px;
        padding: 1.25rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        animation: float 6s ease-in-out infinite;
        z-index: 10;
    }
    
    .card-1 {
        top: 25%;
        left: 15%;
        width: 180px;
        animation-delay: 0s;
    }

    .card-2 {
        top: 15%;
        right: 25%;
        width: 150px;
        text-align: center;
        animation-delay: 2s;
    }

    .card-3 {
        bottom: 25%;
        right: 15%;
        width: 150px;
        text-align: center;
        animation-delay: 4s;
    }
    
    .card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    .floating-card h4 {
        font-size: 0.9rem;
    }
    
    .card-icon {
        font-size: 1.7rem;
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .floating-card {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .card-1 {
        width: 160px;
        top: 30%;
        left: 5%;
    }

    .card-2 {
        width: 130px;
        top: 10%;
        right: 30%;
    }

    .card-3 {
        width: 130px;
        bottom: 30%;
        right: 5%;
    }
    
    .card-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
    }
    
    .floating-card h4 {
        font-size: 0.8rem;
    }
    
    .card-icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
}