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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
  font-weight: 300;
    color: #d2691e;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f4a460;
}


/*-------- User Added Scripts --------*/
.logo-container {
  display: inline-block; /* Or flex/block depending on layout */
  max-width: 110px; /* Adjust max-width as needed */
 height: auto;
  width: 100%; /* Ensures responsiveness within parent container */
}

.heading{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
   color:#ffffff;
}

.font4a {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight:800;
  color: #004418;                                                             
}
.font4b {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #ffffff;                                                              
}
.font4c {
     font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #004418;
    font-weight: 600;
}
.font4d {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #4a4a4a;                                                              
}
.font4e {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 400;
 color: #ffffff;                                                               
}

/* Styles for screens smaller than 768px wide */
@media screen and (max-width: 768px) {
  body {
    background-image: url('small-screen-image.jpg'); /* Optional: use a different image */
    background-size: contain; /* Or cover, depending on desired behavior */
  }
}*/

.infoplan {   
  background-image: linear-gradient(to bottom, #370e05, #2c0c09, #22090a, #160407, #000000);
 background-size: cover;
}
.plan-b-bg {   
background-image: linear-gradient(to bottom, #921a00, #720f13, #4f0e18, #2b0e13, #000000);
background-size: cover;
}
.planning {   
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/bg4.jpg') 
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; /* Optional: for parallax-like effect */
  background-size: cover; /* This is key for responsiveness */
}


.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
height: 970px; 
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  /* For 4:3 aspect ratio, use padding-top: 75%; (3/4 * 100) */
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Optional: remove default iframe border */
 .background-color: linear-gradient(#EFEFFF, #CCCBFF);
  }
}
.container-service {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
background-color: linear-gradient(#EFEFFF, #CCCBFF);
}
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Remove any potential whitespace below footer */
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        /* Make sure the container takes full height */
        #subscribe {
            width: 100%;
            margin: 0;
            padding: 0;
        }
.headicon {
 padding-top: 20px;
  width: 85px;
  height: auto;
  z-index: 1001;
 cursor: pointer;
}
.service {
  background: linear-gradient(#EFEFFF, #CCCBFF);
}
.parallax-bg {
  background-image: url('../images/bg6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.parallax-bg2 {
  background-image: url('../images/bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
/* Grid layout for videos */
/* Base (mobile-first styles) */
.row {
  display: grid;
  grid-template-columns: 1fr; /* single column by default */
  gap: 15px;
}

.grid-item1 {
  text-align: center;
  padding: 10px; /* tighter padding on mobile */
  box-sizing: border-box;
}
 .grid-bg {
     background-color: #4a4a4a;
  }

.grid-item1 h4 {
  font-size: 1rem; /* smaller heading on mobile */
  margin-bottom: 10px;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet and above */
@media (min-width: 600px) {
  .row {
    grid-template-columns: repeat(2, 1fr); /* 2 videos per row */
    gap: 20px;
  }

  .grid-item1 {
    padding: 15px;
  }

  .grid-item1 h4 {
    font-size: 1.1rem;
  }
}

/* Desktop and above */
@media (min-width: 992px) {
  .row {
    grid-template-columns: repeat(4, 1fr); /* 4 videos per row */
  }

  .grid-item1 {
    padding: 20px;
  }

  .grid-item1 h4 {
    font-size: 1.25rem; /* larger heading on big screens */
  }
}





/* End user inputs-------------------------------------------- */

/* Background images for sections */
#planning {
   background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg6.jpg') ; 
 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

#gallery {
    background-image: url('../images/bg4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#pricing {
    background-image: url('service/pricing-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#blog {
    background-image: url('service/blog-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#3d-printing {
    background-image: url('service/3d-printing-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#contact {
       background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg2.jpg') ; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

#team {
    background-image: url('service/team-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Make containers transparent in these sections */
#planning .container,
#gallery .container,
#pricing .container,
#blog .container,
#3d-printing .container,
#contact .container,
#team .container {
    background-color: transparent;
}

/* Header Styles -----------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: transparent;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

#header.sticky {
    background-color: rgba(131, 29, 0, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.logo img {
    height: 80px;
    z-index: 1001;
    cursor: pointer;
}

/* Navigation Styles */
#navbar {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    transition: color 0.5s ease;
    position: relative;
    padding: 10px 0;
    z-index: 1001;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f4a460;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

#header.sticky .nav-link {
    color: #d2691e;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4a4a4a;
    margin: 3px 0;
    transition: all 0.5s ease;
}

#header.sticky .hamburger span {
    background-color: #d2691e;
}

.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);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg4.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.hero-content {
    max-width: 800px;
    padding:  0 20px;
    animation: fadeIn 1s ease;
  z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #f4a460;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f4a460;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d2691e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section ----------------------------------------------------------*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #d2691e;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Planning Section --------------------------------------------*/

.process-steps { 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    background-color: #4a4a4a;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity (0.1-0.7) */
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin: 0 auto 30px;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #f4a460;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #d2691e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Gallery Section ----------------------------------------------------------*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f4a460;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Pricing Section------------------------------------------------------- */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid #f4a460;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    color: #d2691e;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    color: #f4a460;
    font-weight: bold;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #bc8f8f;
}

.pricing-card ul {
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f4a460;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: #d2691e;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: #d2691e;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.read-more {
    color: #f4a460;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d2691e;
}

/* 3D Printing Section -------------------------------------------*/
.printing-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.printing-img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.printing-info {
    flex: 1;
    min-width: 300px;
}

.printing-info h3 {
    color: #d2691e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.printing-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.printing-info ul {
    margin-bottom: 30px;
}

.printing-info li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.printing-info li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f4a460;
}


/* Contact Section --------------------------------------------------------*/
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.contact-bg {
 background-image: linear-gradient(to bottom, #ff0000, #0000ff);
}
.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form h3, .contact-info h3 {
    color: #d2691e;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    background-color: #f4a460;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #d2691e;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #f4a460;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Captcha specific styles */
.captcha-group {
    display: flex;
    flex-direction: column;
}

.captcha-group label {
    margin-bottom: 5px;
    font-weight: 200;
    font-size: 22px;
   color: #ffffff;
}

#captcha {
    width: 200px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group {
    margin-bottom: 15px;
}

/* Team Section --------------------------------------------------------------*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    height: 250px;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: #d2691e;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.member-info p {
    color: #bc8f8f;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f4a460;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #d2691e;
    transform: translateY(-3px);
}

/* Footer Styles */
#footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 20px;
}

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

.footer-logo img {
    height: 90px;
width: 90px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links h3, .footer-services h3, .footer-social h3 {
    color: #f4a460;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after, .footer-services h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #f4a460;
}

.footer-links ul, .footer-services ul {
    margin-top: 20px;
}

.footer-links li, .footer-services li {
    padding: 8px 0;
    border-bottom: 1px solid #444;
}

.footer-links a, .footer-services a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-services a:hover {
    color: #f4a460;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f4a460;
    transform: translateY(-3px);
}

.newsletter {
    margin-top: 30px;
}

.newsletter h4 {
    color: #f4a460;
    margin-bottom: 15px;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
}

.newsletter button {
    padding: 12px 20px;
    background-color: #f4a460;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #d2691e;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f4a460;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #d2691e;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        color: #d2691e;
        font-size: 1.5rem;
        margin: 15px 0;
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 20px;
    }
    
    .printing-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after, .footer-services h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 380px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card, .pricing-card, .blog-card, .team-member {
        margin-bottom: 20px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .member-img {
        height: 200px;
    }
}