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

html {
    overflow-x: hidden;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Remove all scrollbars globally */
*::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --beige: #f8f3f0;
    --light-gray: #e5e5e5;
    --dark-gray: #666666;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
    overflow-x: hidden;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* overflow-x: hidden; */
}

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

.nav-logo h2 {
    color: var(--beige);
    font-weight: 600;
}

.nav-logo img {
    display: block;
    margin-top: 6px;
}

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

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown > .nav-link {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-black);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 8px;
    top: 100%;
    left: 0;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: var(--secondary-black);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Desktop only - ensure dropdown is hidden by default */
@media (min-width: 769px) {
    .dropdown-content {
        display: none !important;
    }
    
    .dropdown:hover .dropdown-content {
        display: block !important;
    }
    
    .nav-menu {
        overflow: visible;
    }
}

.dropdown-arrow {
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 4px;
}

.service-card.clickable {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card.clickable:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--beige);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger to X transformation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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










/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    padding-top: 80px;
}

/* Home Page Hero with Background - Responsive and fixed */
.hero.home-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(125, 116, 116, 0.8)), url('../images/b4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    overflow-x: hidden;
}

.hero-content h1 {
  
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    line-height: 7.2;
       
}

.typewriter-heading {
  
    position: relative;
    height: 4.2rem;
    display: flex;
    align-items: center;
}

#typewriter-text {
    border-right: none;
    animation: none;
}

#typewriter-text::after {
    content: none;
}

.typewriter-heading::after {
    content: none;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* Home Hero Text Styles */
.hero.home-hero .hero-content h1 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.hero.home-hero .hero-content p {
    color: var(--white);
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: rgba(192, 192, 192, 0.7);
    color: var(--white);
    border: 2px solid #C0C0C0;
}

.btn-primary:hover {
    background: rgba(176, 176, 176, 0.8);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid #C0C0C0;
}

.btn-secondary:hover {
    background: #C0C0C0;
    color: var(--primary-black);
}



.hero-placeholder {
    height: 400px;
    background: var(--dark-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Event Coverage Page Service Hero Background */
.service-hero {
    padding: 8rem 0 4rem;
    background: var(--white);
}

.service-hero.event-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('../images/event.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero.event-hero .service-hero-content h1,
.service-hero.event-hero .service-hero-content p {
    color: var(--white);
}

.service-hero.media-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/media.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero.media-hero .service-hero-content h1,
.service-hero.media-hero .service-hero-content p {
    color: var(--white);
}

.service-hero.package-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/package.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero.package-hero .service-hero-content h1,
.service-hero.package-hero .service-hero-content p {
    color: var(--white);
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}


















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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--beige);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* 360° Photobooth Service Card with Background Image */
.service-card.photobooth-card {
    background: url('../images/box1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card.photobooth-card .service-icon,
.service-card.photobooth-card h3,
.service-card.photobooth-card p {
    display: none;
}

/* Event Coverage Service Card with Background Image */
.service-card.event-coverage-card {
    background: url('../images/box2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card.event-coverage-card .service-icon,
.service-card.event-coverage-card h3,
.service-card.event-coverage-card p {
    display: none;
}

/* Media Production Service Card with Background Image */
.service-card.media-production-card {
    background: url('../images/box3.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card.media-production-card .service-icon,
.service-card.media-production-card h3,
.service-card.media-production-card p {
    display: none;
}

/* Web Development Service Card with Background Image */
.service-card.web-development-card {
    margin-top: -60px;
    background: url('../images/box4.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card.web-development-card .service-icon,
.service-card.web-development-card h3,
.service-card.web-development-card p {
    display: none;
}

/* Graphic Design Service Card with Background Image */
.service-card.graphic-design-card {
    background: url('../images/box5.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card.graphic-design-card .service-icon,
.service-card.graphic-design-card h3,
.service-card.graphic-design-card p {
    display: none;
}

/* Full Creative Packages Service Card with Background Image */
.service-card.creative-packages-card {
    background: url('../images/box6.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card.creative-packages-card .service-icon,
.service-card.creative-packages-card h3,
.service-card.creative-packages-card p {
    display: none;
}











/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    text-decoration: none;
    color: inherit;
}

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

.portfolio-item:nth-child(2) {
    animation-delay: 0.3s;
}

.portfolio-item:nth-child(3) {
    animation-delay: 0.5s;
}

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

.portfolio-item:hover {
    transform: translateX(-100px) scale(4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.portfolio-placeholder {
    height: 200px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 500;
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.portfolio-content {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
    transition: left 0.6s ease;
}

.portfolio-content:hover::before {
    left: 100%;
}

.portfolio-content:hover {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(176, 176, 176, 0.1));
    transform: translateY(-2px);
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.portfolio-content:hover h3 {
    color: var(--secondary-black);
}

.portfolio-content p {
    color: var(--dark-gray);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.portfolio-content:hover p {
    color: var(--primary-black);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

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

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.stats.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: #C0C0C0;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    transition: color 0.3s ease;
}

.stat:hover h3 {
    color: var(--secondary-black);
}

.stat p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.about-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.2s;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-placeholder {
    height: 400px;
    background: var(--white) url('../images/SSM-Team.png') no-repeat center center;
    background-size: contain;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.about-placeholder:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.contact-item a {
    color: var(--primary-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-black);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

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

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

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

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--beige);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--beige);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.facebook:hover {
    background: #166FE5;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #E1751F, #C91F6B, #7129A0, #4A4FC7);
}



.social-icon.tiktok {
    background: #000000;
}

.social-icon.tiktok:hover {
    background: #FF0050;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.youtube:hover {
    background: #CC0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-black);
    color: var(--light-gray);
}









/* Service Pages */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--beige);
    padding-top: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Web Development Hero Specific */
.web-dev-hero {
    background: var(--white);
    position: relative;
  
}



.web-dev-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
 
    text-align: left;
}

.web-dev-hero .service-hero-content {
    max-width: none;

}

.web-dev-hero h1 {
    color: var(--primary-black);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.web-dev-hero p {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.laptop-workspace {
    margin-top: -60px;
    position: relative;
    height: 660px;
    width: 660px;
    border-radius: 20px;
    overflow: hidden;
    padding: 1.5px;
    background: var(--white);
}

.laptop-workspace img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 17px;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tech-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.code-line {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #C0C0C0, transparent);
    animation: codeFlow 3s linear infinite;
}

.code-line:nth-child(1) { left: 10%; animation-delay: 0s; }
.code-line:nth-child(2) { left: 30%; animation-delay: 1s; }
.code-line:nth-child(3) { left: 50%; animation-delay: 2s; }
.code-line:nth-child(4) { left: 70%; animation-delay: 0.5s; }
.code-line:nth-child(5) { left: 90%; animation-delay: 1.5s; }

@keyframes codeFlow {
    0% { top: -20px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    color: rgba(102, 102, 102, 0.4);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    font-weight: 600;
}

.floating-element:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 25%; left: 85%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 45%; left: 5%; animation-delay: 2s; }
.floating-element:nth-child(4) { top: 65%; left: 90%; animation-delay: 3s; }
.floating-element:nth-child(5) { top: 75%; left: 15%; animation-delay: 4s; }
.floating-element:nth-child(6) { top: 35%; left: 75%; animation-delay: 1.5s; }
.floating-element:nth-child(7) { top: 55%; left: 25%; animation-delay: 2.5s; }
.floating-element:nth-child(8) { top: 85%; left: 80%; animation-delay: 3.5s; }
.floating-element:nth-child(9) { top: 10%; left: 60%; animation-delay: 0.5s; }
.floating-element:nth-child(10) { top: 90%; left: 50%; animation-delay: 4.5s; }

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

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    opacity: 1;
    display: block;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.service-details {
    padding: 6rem 0;
    background: var(--white);
}

.web-dev-details {
    background: var(--primary-black);
    color: var(--white);
    position: relative;
}

.web-dev-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

.web-dev-details h2 {
    color: var(--white);
}

.web-dev-details .service-content h2 {
    color: var(--white);
}

.web-dev-details .feature {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.web-dev-details .feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

.web-dev-details .feature h3 {
    color: var(--white);
}

.web-dev-details .feature p {
    color: rgba(255, 255, 255, 0.8);
}

.web-dev-details .feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(192, 192, 192, 0.3);
}

.web-dev-details .feature:hover h3 {
    color: #C0C0C0;
}

.web-dev-details .feature:hover p {
    color: var(--white);
}

.service-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 3rem;
    transition: all 0.8s ease;
}

.service-content h2.animate {
    transform: translateY(0);
}

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

.feature {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}



.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: var(--beige);
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: var(--secondary-black);
}

.feature p {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.feature:hover p {
    color: var(--primary-black);
}

.service-cta {
    padding: 4rem 0;
    background: var(--beige);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.web-dev-cta {
    background: var(--primary-black);
    position: relative;
}

.web-dev-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

.web-dev-cta h2 {
    color: var(--white);
}

.web-dev-cta p {
    color: var(--light-gray);
}

.web-dev-cta .btn-primary {
    background: #C0C0C0;
    color: var(--primary-black);
}

.web-dev-cta .btn-primary:hover {
    background: #B0B0B0;
    color: var(--primary-black);
}

/* Pricing Section */
.pricing-section {
 
    padding: 6rem 0;
    background: var(--light-gray);
}

.pricing-note {
   
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    font-size: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
  
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
 
 
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: scale(0.8); 
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills and crops to fit the box */
    display: block;
}



.pricing-content {
    padding: 2rem;
    text-align: center;
}

.pricing-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.package-type {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-card .btn-primary {
    width: 100%;
    background: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-black);
}

.pricing-card .btn-primary:hover {
    background: var(--secondary-black);
    border-color: var(--secondary-black);
}

.service-cta {
    padding: 4rem 0;
    background: var(--beige);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* ========================================
   RESPONSIVE DESIGN - COMPREHENSIVE BREAKPOINTS
   ======================================== */

/* Extra Large (wide monitors): min-width: 1441px */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
        padding: 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 6rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Large (desktops): max-width: 1440px */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 5.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

/* Medium (tablets / small laptops): max-width: 1024px */
@media (max-width: 1024px) {
    /* Navigation - Tablet hamburger menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100vw;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding: 6rem 0 2rem;
        z-index: 999;
        justify-content: flex-start;
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 5rem;
    }
    
    .hero.home-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 2rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .typewriter-heading {
        height: 5rem;
        justify-content: center;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        line-height: 1.5;
        max-width: 700px;
        margin: 0 auto 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

/* Small (large phones / small tablets): max-width: 768px */
@media (max-width: 768px) {
    /* Navigation - Hamburger menu activation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100vw;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding: 6rem 0 2rem;
        z-index: 999;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
    
    .dropdown {
        position: static;
    }
    
    .dropdown-content {
        position: static;
        display: block !important;
        background: rgba(45, 45, 45, 0.9);
        box-shadow: none;
        margin-top: 1rem;
        border-radius: 8px;
        padding: 1rem 0;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-content a {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        color: var(--white);
        display: block;
        text-align: center;
    }
    
    .dropdown-content a:hover {
        color: var(--beige);
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Container adjustments */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 6rem;
        overflow-x: hidden;
    }
    
    .hero.home-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .typewriter-heading {
        height: 4rem;
        justify-content: center;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Section adjustments */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Extra Small (phones): max-width: 480px */
@media (max-width: 480px) {
    /* Navigation - Mobile hamburger menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--primary-black);
        width: 100vw;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding: 5rem 0 2rem;
        z-index: 999;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    .dropdown {
        position: static;
    }
    
    .dropdown-content {
        position: static;
        display: block;
        background: rgba(45, 45, 45, 0.9);
        box-shadow: none;
        margin-top: 1rem;
        border-radius: 8px;
        padding: 1rem 0;
    }
    
    .dropdown-content a {
        font-size: 1rem;
        padding: 0.8rem 0;
        color: var(--light-gray);
    }
    
    .dropdown-content a:hover {
        color: var(--white);
        background-color: rgba(255, 255, 255, 0.1);
    }
    /* Container adjustments */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Hero Section - Mobile optimization */
    .hero {
        min-height: 100vh;
        padding-top: 5rem;
        overflow-x: hidden;
    }
    
    .hero.home-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .typewriter-heading {
        height: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Typography adjustments */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Layout adjustments */
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem;
        min-height: 200px;
    }
    
    .about-placeholder {
        height: 200px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    /* Service pages */
    .service-hero {
        padding-top: 5rem;
        min-height: 70vh;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
    }
}