* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.phone-number {
    margin: 0 1.5rem;
}

.phone-number a {
    color: #fa02fa;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    height: 100%;
    margin: -1rem 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Prevent navigation breaking at larger screens */
@media (max-width: 1300px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .phone-number {
        margin: 0 1rem;
    }
    
    .nav-menu li a {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }
}

/* Main Content */
.main-content {
    margin-top: 0;
}

.section {
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section:nth-child(odd) {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.section-content {
    max-width: 70%;
}

/* Mobile override for section-content width */
@media (max-width: 768px) {
    .section-content {
        max-width: 95% !important;
        width: 95% !important;
    }
}

@media (max-width: 600px) {
    .section-content {
        max-width: 95% !important;
        width: 95% !important;
    }
}

@media (max-width: 480px) {
    .section-content {
        max-width: 95% !important;
        width: 95% !important;
    }
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section p {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.8;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .phone-number {
        margin: 0 1rem;
    }

    .phone-number a {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: 0.3s;
        gap: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section-content {
        max-width: 95%;
    }

    /* Disable fixed background attachment on mobile for better performance */
    #home, #quote, #about, #clients, #videos, #contact, #footer {
        background-attachment: scroll;
    }

    /* Adjust quote section height for mobile */
    #quote {
        min-height: 150px;
        height: auto;
        padding: 1.5rem;
    }

    /* Adjust videos section for mobile */
    #videos {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .video-item iframe {
        width: 100%;
        max-width: 400px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }

    .phone-number {
        margin: 0 0.5rem;
    }

    .phone-number a {
        font-size: 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }

    .quote-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .quote-button {
        width: 90%;
        font-size: 1.2rem;
        height: 45px;
    }

    .about-container {
        gap: 1.5rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .clients-grid {
        gap: 0.5rem;
    }

    .client-logo img {
        min-width: 80px;
        min-height: 80px;
        max-width: 120px;
        max-height: 120px;
    }
}

/* Section-specific styling */
#home { 
    background: url('img/blackbg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
}
#quote { 
    background: url('img/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.quote-button {
    background: #FF8C00;
    color: white;
    border: none;
    height: 50px;
    width: 80%;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    text-decoration: none;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    padding: 0 10px;
}

.quote-button:hover {
    background: #f5a13b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.quote-title {
    color: white !important;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px #000, 2px 2px 4px #000, 2px 2px 4px #000;
    -webkit-text-stroke: 1px black;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
}

/* Responsive quote title */
@media (max-width: 1200px) {
    .quote-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .quote-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .quote-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .quote-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .quote-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}
#about { 
    background: url('img/blackbg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 2rem;
}

.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
}

.about-text {
    flex: 2;
    text-align: left;
}

.about-text h2 {
    color: #2c3e50;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}



.story-content p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    margin-top: 60px;
}



/* Responsive design for about section */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .section-content {
        max-width: 95%;
    }
    
    .about-image img {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .section-content {
        max-width: 100%;
        padding: 2rem 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .story-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .section-content {
        max-width: 100%;
        padding: 1.5rem 0.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .story-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}
#clients { 
    background: url('img/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 175px;
    width: 100%;
}

.client-logo img {
    width: 100%;
    height: auto;
    min-width: 100px;
    min-height: 100px;
    max-width: 175px;
    max-height: 175px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Responsive grid for smaller screens */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.client-logo img:hover {
    transform: scale(1.1);
}
#videos { 
    background: url('img/blackbg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 2rem;
    min-height: 600px;
    height: auto;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-item iframe {
    width: 500px;
    height: 240px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Responsive videos grid */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-item iframe {
        height: 240px;
    }
    
    #videos {
        min-height: 1000px;
    }
}
#contact { 
    background: url('img/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 2rem;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
}

.contact-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 100px;
}

/* Contact form styling */
.contact-form h2 {
    color: #2c3e50;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.contact-form button {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    background: #f5a13b;
    transform: translateY(-2px);
}

/* Contact info styling */
.contact-info {
    text-align: center;
    margin-top: 1rem;
}

.contact-info p {
    color: #730065;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

.contact-info a {
    color: #730065;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fa02fa;
}

/* Success and Error Messages */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
    text-align: center;
    font-weight: 500;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #f5c6cb;
    text-align: center;
    font-weight: 500;
}

/* Responsive design for contact section */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form h2 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .contact-form form {
        width: 100%;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form button {
        width: 100%;
    }
    
    .contact-image {
        order: -1;
        margin-top: 0;
    }
    
    .contact-image img {
        margin-top: 0;
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    .contact-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .contact-form button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .contact-image img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
    
    .contact-image img {
        max-width: 100%;
    }
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
}

/* Responsive video container */
@media (max-width: 768px) {
    .video-container {
        height: 60vh;
    }
    
    .video-container iframe {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 50vh;
    }
    
    .video-container iframe {
        height: 50vh;
    }
}

.section:nth-child(odd) .section-content,
.section:nth-child(even) .section-content {
    background: rgba(255,255,255,0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Override section-content width for mobile to reduce black margins */
@media (max-width: 768px) {
    .section:nth-child(odd) .section-content,
    .section:nth-child(even) .section-content,
    .section-content {
        max-width: 95% !important;
        width: 95% !important;
    }
}

@media (max-width: 600px) {
    .section:nth-child(odd) .section-content,
    .section:nth-child(even) .section-content,
    .section-content {
        max-width: 95% !important;
        width: 95% !important;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .section:nth-child(odd) .section-content,
    .section:nth-child(even) .section-content,
    .section-content {
        max-width: 95% !important;
        width: 95% !important;
        padding: 1.5rem 0.8rem;
    }
}

/* Footer Section */
#footer {
    background: url('img/blackbg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 0.5rem 2rem 2rem 2rem;
    min-height: auto;
    height: auto;
}

.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    text-align: center;
}

.footer-column h3 {
    color: #fa02fa;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-column p {
    color: #fa02fa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fa02fa;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Contact info links in footer */
.footer-column p a {
    color: #fa02fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: white;
}

/* Responsive design for footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-column h3 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-column {
        max-width: 100%;
    }
    
    .footer-column h3 {
        font-size: 1.6rem;
    }
    
    .footer-column p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}
