/* ==========================================================================
   CSS VARIABLES & GLOBAL RESET
   ========================================================================== */
   :root {
    --primary: #B6642C;
    --primary-hover: #9c5525;
    --secondary: #242C64;
    --text-dark: #19191A;
    --text-muted: #555555;
    --bg-light: #FFFCF6;
    --white: #FFFFFF;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(182, 100, 44, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; color: var(--text-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1250px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 42px; line-height: 1.2; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 16px; }

.subtitle {
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Premium Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), #8a481c);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--secondary); transition: var(--transition); z-index: -1;
}
.btn:hover::before { width: 100%; }
.btn:hover { color: var(--white); box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* ==========================================================================
   HEADER (Blended to Solid)
   ========================================================================== */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: transparent; padding: 25px 0;
    transition: var(--transition);
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; transition: var(--transition); }
header.scrolled .logo img { height: 40px; }

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { font-size: 16px; font-weight: 600; color: var(--text-dark); position: relative; padding-bottom: 5px; }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.mobile-menu-btn { display: none; font-size: 26px; cursor: pointer; color: var(--primary); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative; padding: 200px 0 120px;
    background: var(--bg-light); overflow: hidden;
}
.hero-bg-glow {
    position: absolute; top: -20%; left: -10%; width: 50%; height: 60%;
    background: radial-gradient(circle, rgba(182, 100, 44, 0.15) 0%, transparent 70%);
    z-index: 0;
}
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; z-index: 1; }
.hero-content { flex: 1; padding-right: 40px; }
.hero-content h1 { font-size: 58px; line-height: 1.1; margin-bottom: 25px; color: var(--text-dark); }

/* Dynamic Text Animation */
.dynamic-text-wrapper { display: block; color: var(--primary); }
.typed-text { font-weight: 900; }
.cursor { display: inline-block; width: 3px; background-color: var(--primary); animation: blink 0.7s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 35px; max-width: 500px; }
.hero-contact { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.hero-contact .icon-box {
    width: 50px; height: 50px; background: rgba(182, 100, 44, 0.1);
    color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hero-contact span { font-size: 22px; font-weight: 800; font-family: var(--font-head); }

.hero-image { flex: 1; position: relative; }
.blob-bg { position: absolute; top: -5%; left: -5%; width: 100%; height: 100%; background: #5d4a3d; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: 1; animation: morph 8s ease-in-out infinite alternate; }
.blob-shape { position: relative; width: 100%; height: 550px; background: var(--primary); border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%; overflow: hidden; z-index: 2; animation: morph 10s ease-in-out infinite alternate-reverse; }
.blob-shape img { width: 100%; height: 100%; object-fit: cover; }

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%; }
}

.floating-icon { position: absolute; background: var(--white); padding: 18px; border-radius: 12px; box-shadow: var(--shadow-soft); z-index: 3; font-size: 24px; color: var(--primary); animation: float 4s ease-in-out infinite; }
.icon-1 { top: 15%; left: -30px; animation-delay: 0s; }
.icon-2 { bottom: 15%; right: -20px; animation-delay: 2s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.scrolling-banner { background: linear-gradient(90deg, var(--secondary), var(--primary)); padding: 25px 0; overflow: hidden; white-space: nowrap; position: relative; }
.scrolling-text { display: inline-block; font-family: var(--font-head); font-size: 24px; font-weight: 800; color: rgba(255, 255, 255, 0.9); text-transform: uppercase; animation: scroll 20s linear infinite; }
.scrolling-text span { margin: 0 15px; }
.scrolling-text i { font-size: 14px; margin: 0 15px; color: rgba(255,255,255,0.5); vertical-align: middle; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   ABOUT US
   ========================================================================== */
.about-inner { display: flex; align-items: center; gap: 80px; }
.about-image { flex: 1; position: relative; }
.about-shape { width: 100%; height: 550px; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; overflow: hidden; position: relative; z-index: 2; animation: morph 9s ease-in-out infinite alternate; }
.about-shape img { width: 100%; height: 100%; object-fit: cover; }
.about-bg-shape { position: absolute; top: 20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--primary); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; z-index: 1; animation: morph 9s ease-in-out infinite alternate-reverse; }
.about-content { flex: 1; }
.about-content h2 { font-size: 46px; line-height: 1.2; margin-bottom: 25px; }
.about-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 35px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: var(--white); padding: 50px 30px; border-radius: 15px;
    text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition);
    border-bottom: 4px solid transparent; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0%;
    background: linear-gradient(180deg, rgba(182, 100, 44, 0.05) 0%, transparent 100%);
    transition: var(--transition); z-index: 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
    transform: translateY(-12px); box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--primary);
}
.service-icon { font-size: 55px; color: var(--primary); margin-bottom: 20px; transition: var(--transition); position: relative; z-index: 1; }
.service-card:hover .service-icon { transform: scale(1.1); color: var(--secondary); }
.service-card h4 { font-size: 20px; font-weight: 800; position: relative; z-index: 1; }

/* ==========================================================================
   GROWTH
   ========================================================================== */
.growth { background: var(--white); }
.growth-inner { display: flex; align-items: center; gap: 80px; }
.growth-content { flex: 1; }
.growth-content h2 { font-size: 42px; line-height: 1.2; margin-bottom: 20px; }
.growth-content p { color: var(--text-muted); font-size: 17px; margin-bottom: 30px; }
.growth-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; color: var(--text-muted); font-size: 16px; }
.check-icon { background: var(--primary); color: var(--white); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; font-size: 12px; margin-top: 3px; }

.growth-stats { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.stat-box { background: var(--white); padding: 50px 30px; border-radius: 15px; box-shadow: var(--shadow-soft); text-align: center; border: 1px solid rgba(0,0,0,0.03); transition: var(--transition); }
.stat-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(182, 100, 44, 0.2); }
.stat-box h3 { font-size: 56px; color: var(--primary); line-height: 1; margin-bottom: 10px; font-weight: 900; }
.stat-box h3 span { font-size: 34px; color: var(--text-dark); }
.stat-box p { font-size: 16px; font-weight: 600; color: var(--text-dark); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--bg-light); text-align: center; position: relative; overflow: hidden; }
.floating-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(182, 100, 44, 0.05) 0%, transparent 60%); z-index: 0; }
.floating-logo { position: absolute; background: var(--white); border-radius: 50%; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); z-index: 1; animation: float 6s ease-in-out infinite; padding: 12px; }
.floating-logo img { width: 100%; height: 100%; object-fit: contain; }
.fl-1 { top: 15%; left: 10%; animation-delay: 0s; }
.fl-2 { top: 40%; left: 20%; animation-delay: 1s; }
.fl-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.fl-4 { top: 20%; right: 15%; animation-delay: 3s; }

.testi-center { position: relative; max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); z-index: 10; border-top: 5px solid var(--primary); }
.testi-quote-icon { font-size: 50px; color: var(--primary); opacity: 0.3; margin-bottom: 20px; }
.testimonial-slide { display: none; animation: fadeEffect 0.6s; }
.testimonial-slide.active { display: block; }
@keyframes fadeEffect { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testi-text { font-size: 22px; color: var(--text-dark); margin-bottom: 40px; font-weight: 500; font-style: italic; line-height: 1.6; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testi-author img { width: 120px; object-fit: contain; }
.testi-info { text-align: left; border-left: 2px solid #eee; padding-left: 20px; }
.testi-info h5 { font-size: 20px; margin-bottom: 2px; }
.testi-info p { font-size: 15px; color: var(--text-muted); }

.testi-dots { margin-top: 40px; }
.dot { display: inline-block; width: 12px; height: 12px; background: #ddd; border-radius: 50%; margin: 0 6px; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--primary); transform: scale(1.3); }

/* ==========================================================================
   PROUD CLIENTS MARQUEE
   ========================================================================== */
.clients { background: var(--white); text-align: center; border-bottom: 1px solid #f0f0f0; }
.client-marquee-wrapper { overflow: hidden; padding: 20px 0; background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%); position: relative; }
.client-marquee { display: flex; width: max-content; animation: marquee 30s linear infinite; align-items: center; }
.client-marquee img { height: 80px; margin: 0 40px; filter: grayscale(100%) opacity(0.6); transition: var(--transition); }
.client-marquee img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog { background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); display: block; border: 1px solid transparent; }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(182, 100, 44, 0.2); }
.blog-img { width: 100%; height: 240px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-content { padding: 30px; }
.blog-content h4 { font-size: 22px; line-height: 1.4; margin-bottom: 15px; transition: color 0.3s; }
.blog-card:hover h4 { color: var(--primary); }
.blog-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; font-weight: 500; }
.read-more { color: var(--primary); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 5px; }
.read-more i { transition: transform 0.3s; }
.blog-card:hover .read-more i { transform: translateX(5px); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-inner { display: flex; align-items: center; gap: 80px; }
.contact-image { flex: 1; position: relative; }
.contact-blob { width: 100%; height: 600px; background: #5d4a3d; border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; overflow: hidden; position: relative; z-index: 2; }
.contact-bg-shape { position: absolute; top: -20px; left: 20px; width: 100%; height: 100%; background: var(--primary); border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%; z-index: 1; }
.contact-blob img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-wrap { flex: 1; }
.contact-form-wrap h2 { font-size: 42px; margin-bottom: 15px; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 40px; font-size: 17px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-group.full { grid-column: span 2; }
input, textarea { width: 100%; padding: 18px 20px; border: 2px solid #f0f0f0; background: #fafafa; border-radius: 8px; font-family: var(--font-body); font-size: 16px; outline: none; transition: var(--transition); }
input:focus, textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(182, 100, 44, 0.1); }
textarea { height: 150px; resize: vertical; }
.btn-submit { width: 100%; padding: 20px; font-size: 16px; display: flex; justify-content: center; gap: 10px; align-items: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.newsletter-bar { background: linear-gradient(90deg, var(--secondary), var(--primary)); padding: 50px 0; color: var(--white); }
.nl-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.nl-text { display: flex; align-items: center; gap: 25px; }
.nl-icon { font-size: 45px; background: rgba(255,255,255,0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.nl-text h3 { color: var(--white); font-size: 28px; margin-bottom: 5px; }
.nl-text p { font-size: 15px; opacity: 0.9; }

.nl-form { display: flex; width: 100%; max-width: 550px; background: var(--white); border-radius: 6px; overflow: hidden; padding: 5px; }
.nl-form input { border: none; background: transparent; padding: 15px 20px; box-shadow: none; border-radius: 0; }
.nl-form input:focus { box-shadow: none; }
.nl-form .btn { border-radius: 5px; background: var(--secondary); padding: 15px 35px; }
.nl-form .btn:hover { background: var(--dark); }

.footer-contacts { display: flex; padding: 50px 0; border-bottom: 1px solid #eee; }
.fc-item { flex: 1; display: flex; align-items: center; gap: 20px; }
.fc-icon { font-size: 26px; background: var(--primary); color: var(--white); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: var(--shadow-hover); }
.fc-icon.dark { background: var(--secondary); box-shadow: 0 10px 20px rgba(36, 44, 100, 0.2); }
.fc-item h4 { font-size: 20px; margin-bottom: 5px; }
.fc-item p { color: var(--text-muted); font-size: 16px; }

.main-footer { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-col h4 { font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-col p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: var(--transition); display: inline-flex; align-items: center; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.social-links { display: flex; gap: 12px; margin-bottom: 30px; }
.social-links a { width: 45px; height: 45px; background: var(--secondary); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 18px; transition: var(--transition); }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.footer-logo img { width: 220px; opacity: 0.8; transition: var(--transition); }
.footer-logo img:hover { opacity: 1; }

.copyright { background: #f4f4f4; text-align: center; padding: 25px 0; font-size: 15px; color: var(--text-muted); font-weight: 500; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 1000; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); }

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-inner, .about-inner, .growth-inner, .contact-inner { flex-direction: column; text-align: center; }
    .hero-content { padding-right: 0; margin-bottom: 50px; }
    .hero-content h1 { font-size: 48px; }
    .hero-content p, .about-content p, .growth-content p, .contact-form-wrap > p { margin-left: auto; margin-right: auto; }
    .hero-contact { justify-content: center; }
    .growth-list li { justify-content: center; text-align: left; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .main-footer { grid-template-columns: 1fr 1fr; }
    .nl-inner { flex-direction: column; gap: 30px; text-align: center; }
    .footer-contacts { flex-direction: column; gap: 30px; align-items: flex-start; }
    .testi-author { flex-direction: column; text-align: center; }
    .testi-info { border-left: none; border-top: 2px solid #eee; padding-left: 0; padding-top: 15px; margin-top: 15px; text-align: center; }
}

@media (max-width: 768px) {
    .nav-menu, .btn-quote { display: none; }
    .mobile-menu-btn { display: block; }
    .section-padding { padding: 80px 0; }
    .hero-content h1 { font-size: 38px; }
    .hero-image { display: none; } /* Simplify mobile hero */
    .services-grid, .growth-stats, .blog-grid, .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .main-footer { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .fc-item { justify-content: center; text-align: center; flex-direction: column; }
    .floating-logo { display: none; } /* Hide floating logos on mobile */
    .nl-text { flex-direction: column; }
}




/* ==========================================================================
   CSS VARIABLES & GLOBAL RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary: #B6642C;
    --primary-hover: #9c5525;
    --secondary: #242C64;
    --text-dark: #19191A;
    --text-muted: #555555;
    --bg-light: #FFFCF6;
    --bg-gray: #F9F9F9;
    --white: #FFFFFF;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 30px rgba(182, 100, 44, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; color: var(--text-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 25px; } /* Updated to 1200px to match screenshot alignment */
.section-padding { padding: 80px 0; } /* Adjusted padding */
.bg-light { background-color: var(--bg-light); }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.text-center { text-align: center; }

/* Fluid Typography */
.fluid-h2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 20px; }
.fluid-h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 15px; }
.fluid-p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-title-left { margin-bottom: 30px; }

.subtitle {
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

/* ==========================================================================
   UNIVERSAL BUTTONS & "HANGOVER" EFFECT
   ========================================================================== */
.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover { 
    color: var(--white); 
    box-shadow: var(--shadow-hover); 
    transform: translateY(-5px); 
    background: var(--secondary); 
}

/* ==========================================================================
   HEADER & DROPDOWN MENU
   ========================================================================== */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.98); 
    padding: 20px 0; transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
header.scrolled { padding: 12px 0; backdrop-filter: blur(10px); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; transition: var(--transition); }
header.scrolled .logo img { height: 40px; }

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { font-size: 16px; font-weight: 700; color: var(--text-dark); position: relative; padding-bottom: 5px; }

/* The dropdown container */
.dropdown { position: relative; padding-bottom: 10px; margin-bottom: -10px;}

/* Dropdown Menu Box */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 230px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background-color: var(--bg-gray);
    padding-left: 25px; /* Slight indent on hover */
}

.mobile-menu-btn { display: none; font-size: 26px; cursor: pointer; color: var(--primary); }

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.page-hero {
    margin-top: 85px; 
    height: 180px; 
    background-color: #fca830; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.relative-z { position: relative; z-index: 2; width: 100%; }
.page-hero h1 { 
    color: var(--white); 
    font-size: 42px; 
    margin-bottom: 5px; 
}
.breadcrumbs { 
    font-size: 16px; 
    font-weight: 600; 
    color: var(--white);
}
.breadcrumbs a { color: var(--white); text-decoration: none; }
.breadcrumbs a:hover { color: var(--text-dark); }
.breadcrumbs span.dot { margin: 0 10px; opacity: 0.8; }

/* ==========================================================================
   SERVICES PAGE LAYOUT & SPLIT CONTENT
   ========================================================================== */
.split-layout {
    display: flex;
    gap: 80px; /* Space between text and image */
}
.split-layout.align-center { align-items: center; }
.split-content { flex: 1; }
.split-image { flex: 1; text-align: center; }
.split-image img { max-width: 100%; border-radius: 8px; }

/* Sub Services Grid (As shown in your screenshots) */
.sub-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 15px;
}

.sub-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Subtle box style from screenshot */
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.sub-service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.sub-service-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Specific styling for the custom "Discover More" button */
.btn-brown {
    background: linear-gradient(90deg, #8b624c, #6c4e42); /* Brown gradient */
    border-radius: 4px;
    font-size: 13px;
    padding: 14px 30px;
}

/* ==========================================================================
   FORM GRID (Drop us a message)
   ========================================================================== */
.contact-grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for Name/Email and Phone/Subject */
    gap: 15px;
}

.contact-grid-form input, 
.contact-grid-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--white); /* White inputs on light background */
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.contact-grid-form input:focus, 
.contact-grid-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(182, 100, 44, 0.2);
}

.contact-grid-form textarea {
    grid-column: span 2; /* Textarea takes full width */
    resize: vertical;
}

.contact-grid-form button {
    grid-column: span 2; /* Button takes full width or centers */
    justify-self: center; /* Centers the button as per screenshot */
}

/* ==========================================================================
   FOOTER & NEWSLETTER SECTION 
   ========================================================================== */
.dark-gradient { 
    background: linear-gradient(90deg, #9c4a1a 0%, #352a45 100%); 
    padding: 45px 0;
    color: var(--white); 
}
.nl-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.nl-text { display: flex; align-items: center; gap: 20px; }
.nl-icon { font-size: 45px; color: var(--white); opacity: 0.95; }
.nl-text h3 { color: var(--white); font-size: clamp(1.4rem, 2vw, 1.6rem); margin-bottom: 3px; font-weight: 800;}
.nl-text p { font-size: 14px; opacity: 0.9; }

.nl-form { 
    display: flex; 
    width: 100%; 
    max-width: 550px; 
    background: var(--white); 
    border-radius: 6px; 
    overflow: hidden; 
    padding: 4px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.nl-form input { 
    border: none; 
    background: transparent; 
    padding: 15px 20px; 
    width: 100%; 
    outline: none; 
    font-size: 15px;
}
.nl-form .btn-brown { 
    border-radius: 4px; 
    background: linear-gradient(90deg, #352a45, #9c4a1a); 
    padding: 0 35px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.nl-form .btn-brown:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* ==========================================================================
   EMAIL & ADDRESS HANGOVER EFFECT
   ========================================================================== */
.footer-contacts { display: flex; flex-wrap: wrap; padding: 60px 0; border-bottom: 1px solid #eee; gap: 30px; }

.fc-item { 
    flex: 1; 
    min-width: 300px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 20px; 
    border-radius: 12px; 
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.fc-item:hover {
    transform: translateY(-8px); 
    box-shadow: var(--shadow-hover); 
    background: var(--white); 
}

.fc-icon { 
    font-size: 24px; 
    background: var(--primary); 
    color: var(--white); 
    width: 60px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    transition: var(--transition);
}
.fc-icon.dark { background: var(--secondary); }

.fc-item:hover .fc-icon { transform: scale(1.1); }
.fc-item h4 { font-size: 18px; margin-bottom: 2px; }

/* Main Footer Setup */
.main-footer { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.social-links { display: flex; gap: 12px; margin-bottom: 30px; }
.social-links a { width: 45px; height: 45px; background: var(--secondary); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 18px; transition: var(--transition); }
.social-links a:hover { background: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.footer-logo img { width: 220px; transition: var(--transition); }
.footer-logo img:hover { opacity: 0.8; }

.copyright { background: var(--white); text-align: center; padding: 25px 0; font-size: 14px; color: var(--text-muted); font-weight: 500; border-top: 1px solid #eee; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 1000; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .split-layout { flex-direction: column; text-align: center; }
    .section-title-left { text-align: center; }
    
    .sub-services-grid { justify-content: center; }
    .sub-service-item { justify-content: flex-start; } /* Keep text aligned properly */

    .main-footer { grid-template-columns: 1fr 1fr; }
    .nl-inner { flex-direction: column; text-align: center; gap: 20px; }
    .nl-text { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-menu, .btn-quote { display: none; }
    .mobile-menu-btn { display: block; }
    .page-hero { padding: 80px 0; }
    
    /* Reverses order so image is above text on mobile when required */
    .reverse-mobile { flex-direction: column-reverse; }

    .sub-services-grid { grid-template-columns: 1fr; } /* Stacks the sub-services on mobile */
    .contact-grid-form { grid-template-columns: 1fr; } /* Stacks form inputs */
    .contact-grid-form textarea, 
    .contact-grid-form button { grid-column: span 1; }
    
    .footer-contacts { flex-direction: column; text-align: center; gap: 40px; }
    .fc-item { flex-direction: column; }
    .main-footer { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .footer-logo img { margin: 0 auto; }
}






/* ==========================================================================
   DIGITAL MARKETING (SUB-PAGE) SPECIFIC STYLES
   ========================================================================== */

/* The 3-Column Platter Grid */
.platter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.platter-card {
    background: transparent;
    padding: 20px;
    transition: var(--transition);
}

.platter-card:hover {
    transform: translateY(-8px);
}

.platter-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.platter-card:hover img {
    transform: scale(1.1);
}

.platter-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.platter-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Custom Checkmark List (For 'Why Choose Us') */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-muted);
}

.custom-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary); /* Orange checkmark */
    font-size: 16px;
}

/* FAQ Accordion Styles */
.faq-accordion {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 10px;
}

.faq-title {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary); /* Dark Blue */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-title:hover, .faq-title.active {
    color: var(--primary); /* Orange on hover/active */
}

.faq-title i {
    font-size: 14px;
    color: #ccc;
    transition: transform 0.3s ease;
}

.faq-title.active i {
    transform: rotate(45deg); /* Turns the Plus into an X */
    color: var(--primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content p {
    padding-bottom: 15px;
    font-size: 15px;
    color: var(--text-muted);
}

/* Mobile Responsiveness for Sub-Pages */
@media (max-width: 992px) {
    .platter-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .platter-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}










/* ==========================================================================
   CSS VARIABLES & GLOBAL RESET
   ========================================================================== */
   @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&family=Roboto:wght@400;500;700&display=swap');

   :root {
       --primary: #B6642C;
       --primary-hover: #9c5525;
       --secondary: #242C64;
       --text-dark: #19191A;
       --text-muted: #555555;
       --bg-light: #FFFCF6;
       --bg-gray: #F9F9F9;
       --white: #FFFFFF;
       --font-head: 'Nunito', sans-serif;
       --font-body: 'Roboto', sans-serif;
       --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
       --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
       --shadow-hover: 0 20px 40px rgba(182, 100, 44, 0.15);
       --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
   }
   
   * { margin: 0; padding: 0; box-sizing: border-box; }
   
   body {
       font-family: var(--font-body);
       color: var(--text-dark);
       line-height: 1.7;
       overflow-x: hidden;
       background-color: var(--white);
       scroll-behavior: smooth;
   }
   
   h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; color: var(--text-dark); }
   a { text-decoration: none; color: inherit; transition: var(--transition); }
   ul { list-style: none; }
   img { max-width: 100%; height: auto; display: block; }
   
   .container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 25px; }
   .section-padding { padding: 100px 0; }
   
   /* Buttons */
   .btn {
       display: inline-block;
       background: linear-gradient(90deg, var(--primary), #8a481c);
       color: var(--white);
       padding: 16px 36px;
       border-radius: 6px;
       font-family: var(--font-head);
       font-weight: 800;
       font-size: 14px;
       text-transform: uppercase;
       letter-spacing: 1px;
       border: none;
       cursor: pointer;
       transition: var(--transition);
       position: relative;
       overflow: hidden;
       z-index: 1;
   }
   .btn::before {
       content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
       background: var(--secondary); transition: var(--transition); z-index: -1;
   }
   .btn:hover::before { width: 100%; }
   .btn:hover { color: var(--white); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
   
   /* ==========================================================================
      HEADER (Sticky & Blended)
      ========================================================================== */
   header {
       position: fixed; top: 0; width: 100%; z-index: 1000;
       background: rgba(255, 255, 255, 0.98); 
       padding: 20px 0; transition: var(--transition);
       box-shadow: 0 2px 15px rgba(0,0,0,0.05);
   }
   header.scrolled { padding: 12px 0; backdrop-filter: blur(10px); }
   .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
   .logo img { height: 45px; transition: var(--transition); }
   
   .nav-links { display: flex; gap: 35px; align-items: center; }
   .nav-links a { font-size: 16px; font-weight: 600; color: var(--text-dark); position: relative; padding-bottom: 5px; }
   .nav-links a::after {
       content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
       background: var(--primary); transition: var(--transition);
   }
   .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
   .nav-links a:hover, .nav-links a.active { color: var(--primary); }
   .mobile-menu-btn { display: none; font-size: 26px; cursor: pointer; color: var(--primary); }
   
   /* ==========================================================================
      PREMIUM HERO BANNER
      ========================================================================== */
   .page-hero {
       margin-top: 85px;
       padding: 100px 0;
       text-align: center;
       position: relative;
       overflow: hidden;
   }
   .premium-gradient {
       background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
       color: var(--white);
   }
   .hero-pattern-overlay {
       position: absolute; top: 0; left: 0; width: 100%; height: 100%;
       background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
       background-size: 20px 20px; z-index: 1;
   }
   .relative-z { position: relative; z-index: 2; }
   .page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 15px; }
   .breadcrumbs { font-size: 16px; font-weight: 600; opacity: 0.9; }
   .breadcrumbs a:hover { color: var(--text-dark); }
   .breadcrumbs span { margin: 0 12px; opacity: 0.5; }
   
   /* ==========================================================================
      PORTFOLIO FILTERS (Interactive Pills)
      ========================================================================== */
   .portfolio-filters {
       display: flex;
       justify-content: center;
       flex-wrap: wrap;
       gap: 15px;
       margin-bottom: 50px;
   }
   .filter-btn {
       background: var(--white);
       border: 1px solid #eaeaea;
       padding: 12px 25px;
       border-radius: 30px;
       font-family: var(--font-head);
       font-weight: 700;
       font-size: 15px;
       color: var(--text-dark);
       cursor: pointer;
       transition: var(--transition);
       display: flex;
       align-items: center;
       gap: 10px;
       box-shadow: var(--shadow-sm);
   }
   .filter-btn i { color: var(--primary); transition: var(--transition); }
   .filter-btn:hover { border-color: var(--primary); transform: translateY(-3px); }
   .filter-btn.active {
       background: var(--primary);
       color: var(--white);
       border-color: var(--primary);
       box-shadow: var(--shadow-md);
   }
   .filter-btn.active i { color: var(--white); }
   
   /* ==========================================================================
      PORTFOLIO GRID & CARDS
      ========================================================================== */
   .portfolio-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
       gap: 30px;
       transition: var(--transition);
   }
   .project-card {
       background: var(--white);
       border-radius: 15px;
       overflow: hidden;
       box-shadow: var(--shadow-md);
       transition: var(--transition);
       border: 1px solid transparent;
   }
   .project-card:hover {
       transform: translateY(-10px);
       box-shadow: var(--shadow-hover);
       border-color: rgba(182, 100, 44, 0.2);
   }
   .project-image {
       position: relative;
       width: 100%;
       height: 250px;
       overflow: hidden;
   }
   .project-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.6s ease;
   }
   .project-card:hover .project-image img {
       transform: scale(1.1);
   }
   .project-overlay {
       position: absolute;
       top: 0; left: 0; width: 100%; height: 100%;
       background: rgba(36, 44, 100, 0.7); /* Navy overlay */
       display: flex;
       align-items: center;
       justify-content: center;
       opacity: 0;
       transition: var(--transition);
   }
   .project-card:hover .project-overlay { opacity: 1; }
   
   .view-btn {
       background: var(--primary);
       color: var(--white);
       width: 50px; height: 50px;
       border-radius: 50%;
       display: flex; align-items: center; justify-content: center;
       font-size: 20px;
       transform: translateY(20px);
       transition: all 0.4s ease;
   }
   .project-card:hover .view-btn { transform: translateY(0); }
   .view-btn:hover { background: var(--white); color: var(--primary); }
   
   .project-info {
       padding: 25px;
       text-align: left;
   }
   .project-info span {
       color: var(--primary);
       font-size: 13px;
       font-weight: 700;
       text-transform: uppercase;
       letter-spacing: 1px;
       display: block;
       margin-bottom: 8px;
   }
   .project-info h3 {
       font-size: 22px;
       color: var(--text-dark);
       line-height: 1.3;
   }
   
   /* Hiding utility for JS filtering */
   .hidden { display: none !important; }
   
   /* ==========================================================================
      FOOTER & NEWSLETTER
      ========================================================================== */
   .dark-gradient {
       background: linear-gradient(90deg, #513018 0%, var(--secondary) 100%);
       padding: 50px 0;
       color: var(--white);
   }
   .nl-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
   .nl-text { display: flex; align-items: center; gap: 25px; }
   .nl-icon { font-size: 45px; color: var(--white); }
   .nl-text h3 { color: var(--white); font-size: 28px; margin-bottom: 5px; }
   .nl-text p { font-size: 15px; opacity: 0.9; }
   
   .nl-form { display: flex; width: 100%; max-width: 500px; background: var(--white); border-radius: 6px; overflow: hidden; padding: 5px; }
   .nl-form input { border: none; background: transparent; padding: 15px 20px; width: 100%; outline: none; }
   .nl-form .btn { border-radius: 4px; background: linear-gradient(90deg, #6c4021, var(--primary)); }
   
   .footer-contacts { display: flex; padding: 50px 0; border-bottom: 1px solid #eee; gap: 30px; }
   .fc-item { flex: 1; display: flex; align-items: center; gap: 20px; }
   .fc-icon { font-size: 24px; background: var(--primary); color: var(--white); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: var(--shadow-hover); }
   .fc-icon.dark { background: var(--secondary); box-shadow: 0 10px 20px rgba(36, 44, 100, 0.2); }
   .fc-item h4 { font-size: 20px; margin-bottom: 5px; }
   
   .main-footer { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
   .footer-col h4 { font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
   .footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
   .footer-col p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }
   .footer-links li { margin-bottom: 15px; }
   .footer-links a { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: var(--transition); display: inline-block; }
   .footer-links a:hover { color: var(--primary); transform: translateX(5px); }
   .social-links { display: flex; gap: 12px; margin-bottom: 30px; }
   .social-links a { width: 45px; height: 45px; background: var(--secondary); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 18px; transition: var(--transition); }
   .social-links a:hover { background: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
   .footer-logo img { width: 220px; filter: grayscale(100%); opacity: 0.7; transition: var(--transition); }
   .footer-logo img:hover { filter: grayscale(0%); opacity: 1; }
   
   .copyright { background: var(--white); text-align: center; padding: 25px 0; font-size: 14px; color: var(--text-muted); font-weight: 500; border-top: 1px solid #eee; }
   
   /* Floating WhatsApp */
   .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 1000; transition: var(--transition); }
   .whatsapp-float:hover { transform: scale(1.1) translateY(-5px); }
   
   /* ==========================================================================
      RESPONSIVE MEDIA QUERIES
      ========================================================================== */
   @media (max-width: 1024px) {
       .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
       .main-footer { grid-template-columns: 1fr 1fr; }
       .nl-inner { flex-direction: column; text-align: center; gap: 20px; }
       .nl-text { flex-direction: column; }
   }
   
   @media (max-width: 768px) {
       .nav-menu, .btn-quote { display: none; }
       .mobile-menu-btn { display: block; }
       .page-hero { padding: 80px 0; }
       .portfolio-filters { flex-direction: column; width: 100%; align-items: center; }
       .filter-btn { width: 100%; justify-content: center; }
       .portfolio-grid { grid-template-columns: 1fr; }
       .footer-contacts { flex-direction: column; text-align: center; gap: 40px; }
       .fc-item { flex-direction: column; }
       .main-footer { grid-template-columns: 1fr; text-align: center; }
       .footer-col h4::after { left: 50%; transform: translateX(-50%); }
       .social-links { justify-content: center; }
       .footer-logo img { margin: 0 auto; }
   }





/* ==========================================================================
   CSS VARIABLES & GLOBAL RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary: #B6642C;
    --primary-hover: #9c5525;
    --secondary: #242C64;
    --text-dark: #19191A;
    --text-muted: #555555;
    --bg-light: #FFFCF6;
    --bg-gray: #F9F9F9;
    --white: #FFFFFF;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 30px rgba(182, 100, 44, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; color: var(--text-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }

/* Fluid Typography */
.fluid-h2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 20px; }
.fluid-h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 15px; }
.fluid-p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-title-left { margin-bottom: 30px; }

.subtitle {
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

/* ==========================================================================
   UNIVERSAL BUTTONS & "HANGOVER" EFFECT
   ========================================================================== */
.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover { 
    color: var(--white); 
    box-shadow: var(--shadow-hover); 
    transform: translateY(-5px); 
    background: var(--secondary); 
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.98); 
    padding: 20px 0; transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
header.scrolled { padding: 12px 0; backdrop-filter: blur(10px); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; transition: var(--transition); }
header.scrolled .logo img { height: 40px; }

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { font-size: 16px; font-weight: 700; color: var(--text-dark); position: relative; padding-bottom: 5px; }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.mobile-menu-btn { display: none; font-size: 26px; cursor: pointer; color: var(--primary); }

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.page-hero {
    margin-top: 85px; 
    height: 180px; 
    background-color: #fca830; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.relative-z { position: relative; z-index: 2; width: 100%; }
.page-hero h1 { 
    color: var(--white); 
    font-size: 42px; 
    margin-bottom: 5px; 
}
.breadcrumbs { 
    font-size: 16px; 
    font-weight: 600; 
    color: var(--white);
}
.breadcrumbs a {
    color: var(--white);
    text-decoration: none;
}
.breadcrumbs a:hover { color: var(--text-dark); }
.breadcrumbs span.dot { margin: 0 10px; opacity: 0.8; }

/* ==========================================================================
   ABOUT US - SPECIFIC SECTIONS
   ========================================================================== */
.split-layout {
    display: flex;
    gap: 60px;
}
.split-layout.align-center {
    align-items: center;
}
.split-content { flex: 1; }
.split-image { flex: 1; position: relative; }

/* Stats Section */
.about-stats {
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background: var(--white);
}
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.stat-block {
    flex: 1;
    padding: 0 20px;
    transition: var(--transition);
}
.stat-block:hover { transform: translateY(-5px); }
.stat-header { margin-bottom: 10px; display: flex; justify-content: center; align-items: baseline; }
.stat-number { font-size: clamp(3rem, 5vw, 4.5rem); font-family: var(--font-head); font-weight: 900; color: var(--text-dark); line-height: 1; }
.stat-plus { font-size: clamp(2rem, 3vw, 3rem); font-family: var(--font-head); font-weight: 900; color: var(--primary); margin-left: 5px; }
.stat-title { font-size: 15px; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 15px; }
.stat-block p { font-size: 15px; color: var(--text-muted); max-width: 280px; margin: 0 auto; }
.stat-divider { width: 1px; height: 100px; background-color: #eee; }

/* What We Offer (Mission/Moto/Vision) */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.offer-card {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}
.offer-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(182, 100, 44, 0.2);
}
.offset-card { margin-left: 50px; } 
.offer-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, #3a458f 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(36, 44, 100, 0.3);
}
.offer-card:nth-child(2) .offer-icon { background: linear-gradient(135deg, var(--primary) 0%, #d47a3e 100%); box-shadow: 0 10px 20px rgba(182, 100, 44, 0.3); }
.offer-card:nth-child(3) .offer-icon { background: linear-gradient(135deg, #5d4a3d 0%, #8b715e 100%); box-shadow: 0 10px 20px rgba(93, 74, 61, 0.3); }
.offer-text h4 { font-size: 20px; margin-bottom: 10px; letter-spacing: 1px; }
.offer-text p { font-size: 15px; color: var(--text-muted); }

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.why-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); }
.why-icon {
    position: relative;
    width: 80px; height: 80px;
    margin: 0 auto 25px;
    color: var(--secondary);
    font-size: 45px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.why-card:hover .why-icon { color: var(--primary); transform: scale(1.1); }
.why-icon .small-icon { position: absolute; top: -5px; right: -5px; font-size: 20px; color: var(--primary); }
.why-icon .small-icon-br { position: absolute; bottom: 0; right: 0; font-size: 20px; color: var(--primary); background: white; border-radius: 50%; }
.why-icon .browser-bg { position: absolute; top: 10px; left: 10px; width: 60px; height: 40px; border: 2px solid var(--primary); border-radius: 4px; z-index: -1; opacity: 0.2; }
.why-icon .globe-hand { position: absolute; bottom: -10px; right: -10px; font-size: 30px; color: var(--primary); }
.why-card h4 { font-size: 22px; margin-bottom: 15px; }
.why-card p { font-size: 15px; color: var(--text-muted); }

/* Experience Progress Bars */
.relative { position: relative; }
.blob-mask {
    width: 100%; max-width: 450px; height: 500px; margin: 0 auto;
    background: var(--bg-gray);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden; position: relative; z-index: 2;
    box-shadow: var(--shadow-md);
}
.blob-mask img { width: 100%; height: 100%; object-fit: cover; }
.blob-bg-shape {
    position: absolute; top: -20px; left: 20px; width: 100%; max-width: 450px; height: 500px;
    background: var(--primary);
    border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
    z-index: 1; opacity: 0.8;
}
.floating-dot { position: absolute; border-radius: 50%; background: var(--secondary); z-index: 3; }
.fd-1 { width: 40px; height: 40px; bottom: 10%; left: 10%; background: var(--text-dark); }
.fd-2 { width: 20px; height: 20px; top: 15%; right: 15%; background: var(--primary); }
.fd-3 { width: 60px; height: 60px; top: -5%; left: 30%; background: #e0e0e0; opacity: 0.5; z-index: 0; }

.progress-container { margin-top: 40px; }
.progress-item { margin-bottom: 25px; }
.progress-text { display: flex; justify-content: space-between; font-weight: 700; font-size: 15px; margin-bottom: 10px; color: var(--text-dark); }
.progress-text span:last-child { color: var(--primary); }
.progress-track { width: 100%; height: 6px; background: #e5e5e5; border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #e68a22); width: 0; border-radius: 10px; transition: width 1.5s cubic-bezier(0.1, 0.5, 0.2, 1); }

/* ==========================================================================
   FOOTER & NEWSLETTER SECTION 
   ========================================================================== */
.dark-gradient { 
    /* Perfect match to the uploaded image gradient */
    background: linear-gradient(90deg, #9c4a1a 0%, #352a45 100%); 
    padding: 45px 0; /* Adjusted height to match the image box size */
    color: var(--white); 
}
.nl-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.nl-text { display: flex; align-items: center; gap: 20px; }
.nl-icon { font-size: 45px; color: var(--white); opacity: 0.95; }
.nl-text h3 { color: var(--white); font-size: clamp(1.4rem, 2vw, 1.6rem); margin-bottom: 3px; font-weight: 800;}
.nl-text p { font-size: 14px; opacity: 0.9; }

/* The white box wrapping the input and button */
.nl-form { 
    display: flex; 
    width: 100%; 
    max-width: 550px; 
    background: var(--white); 
    border-radius: 6px; 
    overflow: hidden; 
    padding: 4px; /* Creates the border effect inside the box */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.nl-form input { 
    border: none; 
    background: transparent; 
    padding: 15px 20px; 
    width: 100%; 
    outline: none; 
    font-size: 15px;
}
.nl-form .btn-brown { 
    border-radius: 4px; 
    background: linear-gradient(90deg, #352a45, #9c4a1a); /* Exact gradient for the button */
    padding: 0 35px; /* Perfect sizing */
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.nl-form .btn-brown:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* ==========================================================================
   EMAIL & ADDRESS HANGOVER EFFECT (THE NEW HOVER)
   ========================================================================== */
.footer-contacts { display: flex; flex-wrap: wrap; padding: 60px 0; border-bottom: 1px solid #eee; gap: 30px; }

/* Styling the Email and Address blocks */
.fc-item { 
    flex: 1; 
    min-width: 300px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 20px; 
    border-radius: 12px; 
    background: transparent;
    cursor: pointer;
    transition: var(--transition); /* Adds the smooth hover */
}

/* The Hangover Effect! */
.fc-item:hover {
    transform: translateY(-8px); /* Lifts the box up */
    box-shadow: var(--shadow-hover); /* Adds the soft orange shadow */
    background: var(--white); /* Changes background to white to pop out */
}

.fc-icon { 
    font-size: 24px; 
    background: var(--primary); 
    color: var(--white); 
    width: 60px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    transition: var(--transition); /* Smooth scaling */
}
.fc-icon.dark { background: var(--secondary); }

/* Makes the icon inside pop slightly on hover */
.fc-item:hover .fc-icon {
    transform: scale(1.1);
}

.fc-item h4 { font-size: 18px; margin-bottom: 2px; }

/* Main Footer Setup */
.main-footer { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.social-links { display: flex; gap: 12px; margin-bottom: 30px; }
.social-links a { width: 45px; height: 45px; background: var(--secondary); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 18px; transition: var(--transition); }
.social-links a:hover { background: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.footer-logo img { width: 220px; transition: var(--transition); }
.footer-logo img:hover { opacity: 0.8; }

.copyright { background: var(--white); text-align: center; padding: 25px 0; font-size: 14px; color: var(--text-muted); font-weight: 500; border-top: 1px solid #eee; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 1000; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .split-layout { flex-direction: column; text-align: center; }
    .section-title-left { text-align: center; }
    .offset-card { margin-left: 0; }
    .offer-card { flex-direction: column; align-items: center; text-align: center; }
    
    .stats-container { flex-wrap: wrap; gap: 30px; }
    .stat-divider { display: none; }
    .stat-block { min-width: 45%; }
    
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .main-footer { grid-template-columns: 1fr 1fr; }
    .nl-inner { flex-direction: column; text-align: center; gap: 20px; }
    .nl-text { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-menu, .btn-quote { display: none; }
    .mobile-menu-btn { display: block; }
    .page-hero { padding: 80px 0; }
    
    .stat-block { min-width: 100%; margin-bottom: 20px; }
    .why-us-grid { grid-template-columns: 1fr; }
    
    .footer-contacts { flex-direction: column; text-align: center; gap: 40px; }
    .fc-item { flex-direction: column; }
    .main-footer { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .footer-logo img { margin: 0 auto; }
}













/* ==========================================================================
   CSS VARIABLES & GLOBAL RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary: #B6642C;
    --primary-hover: #9c5525;
    --secondary: #242C64;
    --text-dark: #19191A;
    --text-muted: #555555;
    --bg-light: #FFFCF6;
    --bg-gray: #F9F9F9;
    --white: #FFFFFF;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(182, 100, 44, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; color: var(--text-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1250px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 100px 0; }

/* Premium Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), #8a481c);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--secondary); transition: var(--transition); z-index: -1;
}
.btn:hover::before { width: 100%; }
.btn:hover { color: var(--white); box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.98); 
    padding: 20px 0; transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
header.scrolled { padding: 12px 0; backdrop-filter: blur(10px); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; transition: var(--transition); }
header.scrolled .logo img { height: 40px; }

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { font-size: 16px; font-weight: 700; color: var(--text-dark); position: relative; padding-bottom: 5px; }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.mobile-menu-btn { display: none; font-size: 26px; cursor: pointer; color: var(--primary); }

/* ==========================================================================
   PREMIUM HERO BANNER
   ========================================================================== */
.page-hero {
    margin-top: 85px;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.premium-gradient {
    background: linear-gradient(135deg, #F09819 0%, var(--primary) 100%);
    color: var(--white);
}
.hero-pattern-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 30px 30px; z-index: 1;
}
.relative-z { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.8rem, 5vw, 4.5rem); margin-bottom: 15px; text-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.breadcrumbs { font-size: 16px; font-weight: 600; opacity: 0.9; }
.breadcrumbs a:hover { color: var(--text-dark); }
.breadcrumbs span { margin: 0 12px; opacity: 0.5; }

/* ==========================================================================
   BLOG PAGE LAYOUT
   ========================================================================== */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* --- Left: Blog Posts Grid --- */
.blog-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
}

.blog-img-link {
    display: block;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    position: relative;
}

.blog-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-post-card:hover .blog-img-link img {
    transform: scale(1.08);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.blog-meta a {
    color: var(--text-muted);
}
.blog-meta a:hover {
    color: var(--primary);
}

.blog-card-content h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-card-content h2 a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.blog-card-content h2 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.read-more {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    color: var(--secondary);
}

.blog-actions {
    color: #b0b0b0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.blog-actions:hover {
    color: var(--primary);
}

/* Pagination */
.pagination {
    grid-column: 1 / -1; /* Span full width of blog-main */
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #f5f5f5;
    color: var(--text-dark);
    font-weight: 700;
    transition: var(--transition);
}

.page-numbers:hover, .page-numbers.current {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* --- Right: Sidebar --- */
.blog-sidebar {
    position: sticky;
    top: 120px; /* Stays fixed while scrolling */
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: var(--white);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* Search Widget */
.search-widget form {
    position: relative;
    display: flex;
}

.search-widget input {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    outline: none;
    font-family: var(--font-body);
}

.search-widget input:focus {
    border-color: var(--primary);
}

.search-widget button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
}

/* Categories List */
.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.category-list a::before {
    content: '\2022'; /* Bullet */
    color: var(--primary);
    font-size: 20px;
    margin-right: 10px;
    line-height: 1;
}

.category-list a:hover {
    color: var(--primary);
}

/* Recent Posts */
.recent-posts-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-posts-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.rp-info {
    display: flex;
    flex-direction: column;
}

.rp-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.rp-info a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.rp-info a:hover {
    color: var(--primary);
}

/* Popular Searches / Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 15px;
    background: #f5f5f5;
    color: var(--text-muted);
    font-size: 13px;
    border-radius: 4px;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   FOOTER (Unified styles)
   ========================================================================== */
.dark-gradient { background: linear-gradient(90deg, #513018 0%, var(--secondary) 100%); padding: 50px 0; color: var(--white); }
.nl-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.nl-text { display: flex; align-items: center; gap: 25px; }
.nl-icon { font-size: 45px; color: var(--white); }
.nl-text h3 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 1.8rem); margin-bottom: 5px; }
.nl-form { display: flex; width: 100%; max-width: 500px; background: var(--white); border-radius: 6px; overflow: hidden; padding: 5px; }
.nl-form input { border: none; background: transparent; padding: 15px 20px; width: 100%; outline: none; }
.nl-form .btn { border-radius: 4px; background: linear-gradient(90deg, #6c4021, var(--primary)); padding: 15px 35px; }

.footer-contacts { display: flex; flex-wrap: wrap; padding: 50px 0; border-bottom: 1px solid #eee; gap: 30px; }
.fc-item { flex: 1; min-width: 300px; display: flex; align-items: center; gap: 20px; }
.fc-icon { font-size: 24px; background: var(--primary); color: var(--white); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: var(--shadow-hover); }
.fc-icon.dark { background: var(--secondary); box-shadow: 0 10px 20px rgba(36, 44, 100, 0.2); }
.fc-item h4 { font-size: 18px; margin-bottom: 2px; }

.main-footer { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-col h4 { font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.social-links { display: flex; gap: 12px; margin-bottom: 30px; }
.social-links a { width: 45px; height: 45px; background: var(--secondary); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 18px; transition: var(--transition); }
.social-links a:hover { background: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.footer-logo img { width: 220px; filter: grayscale(100%); opacity: 0.7; transition: var(--transition); }
.footer-logo img:hover { filter: grayscale(0%); opacity: 1; }

.copyright { background: var(--white); text-align: center; padding: 25px 0; font-size: 14px; color: var(--text-muted); font-weight: 500; border-top: 1px solid #eee; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); z-index: 1000; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; /* Stack sidebar below posts on tablet */ gap: 60px; }
    .blog-sidebar { position: static; /* Remove sticky on mobile/tablet */ display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    
    .main-footer { grid-template-columns: 1fr 1fr; }
    .nl-inner { flex-direction: column; text-align: center; gap: 20px; }
    .nl-text { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-menu, .btn-quote { display: none; }
    .mobile-menu-btn { display: block; }
    .page-hero { padding: 80px 0; }
    
    .blog-main { grid-template-columns: 1fr; /* 1 post per row on mobile */ }
    .blog-sidebar { grid-template-columns: 1fr; } /* 1 widget per row */
    
    .footer-contacts { flex-direction: column; text-align: center; gap: 40px; }
    .fc-item { flex-direction: column; }
    .main-footer { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .footer-logo img { margin: 0 auto; }
}





/* ==========================================================================
   HORIZONTAL 2-COLUMN CARDS (For Website Dev Page)
   ========================================================================== */

.services-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns side by side */
    gap: 30px;
    margin-top: 40px;
}

.horizontal-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04); /* Soft shadow */
    transition: var(--transition);
    text-align: left; /* Keep text aligned to the left inside the card */
}

.horizontal-card:hover {
    transform: translateY(-8px); /* Hangover/Hover Effect */
    box-shadow: var(--shadow-hover);
}

.horizontal-card img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0; /* Prevents the image from shrinking */
    transition: var(--transition);
}

.horizontal-card:hover img {
    transform: scale(1.1); /* Image slightly pops out on hover */
}

.horizontal-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.horizontal-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Mobile Responsiveness for Horizontal Cards */
@media (max-width: 992px) {
    .services-grid-2col {
        grid-template-columns: 1fr; /* Stacks to 1 column on tablets and mobile */
    }
}
@media (max-width: 500px) {
    .horizontal-card {
        flex-direction: column; /* Stacks image above text on very small screens */
        align-items: center;
        text-align: center;
    }
}





/* ==========================================================================
   TIMELINE LAYOUT (For 3D Modelling Page)
   ========================================================================== */

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* The vertical line in the center */
.timeline-center-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

/* Push content to Left or Right side */
.timeline-row.row-left {
    justify-content: flex-start;
}
.timeline-row.row-right {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%; /* Takes up slightly less than half the space */
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft shadow */
}

/* Hover effect with color change on hover */
.box-shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 10px 15px 40px rgba(0,0,0,0.1);
    background-color: #19191a; /* Turns black on hover like in source */
}

.box-shadow-hover:hover h4, 
.box-shadow-hover:hover p {
    color: var(--white); /* Text turns white on hover */
}

.timeline-content img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.timeline-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: var(--transition);
}

.timeline-text p {
    font-size: 15px;
    color: var(--text-muted);
    transition: var(--transition);
}

/* Connecting line to the center */
.timeline-row.row-left .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -11%; /* Matches the 45% width to touch the center line */
    width: 11%;
    height: 1px;
    background-color: #e0e0e0;
}

.timeline-row.row-right .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -11%; 
    width: 11%;
    height: 1px;
    background-color: #e0e0e0;
}

/* Decorative Background Shapes */
.bg-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}
.shape-left {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}
.shape-right {
    top: 30%;
    right: 10%;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Mobile Responsiveness for Timeline */
@media (max-width: 768px) {
    .timeline-center-line {
        display: none; /* Hide center line on mobile */
    }
    .timeline-row.row-left, .timeline-row.row-right {
        justify-content: center;
    }
    .timeline-content {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .timeline-row.row-left .timeline-content::after,
    .timeline-row.row-right .timeline-content::after {
        display: none; /* Hide connecting lines */
    }
}



/* ==========================================================================
   TWO-COLUMN BIG IMAGE BOXES (For Photography Page)
   ========================================================================== */

.photo-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 40px;
    margin-top: 40px;
    max-width: 900px; /* Keeps the boxes centered and not too wide */
    margin-left: auto;
    margin-right: auto;
}

.photo-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Slightly larger shadow for big boxes */
    transition: var(--transition);
    text-align: center;
}

/* Adds the black hover background seen in the source code */
.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 10px 20px 40px rgba(0,0,0,0.1);
    background-color: #19191a; 
}

.photo-card:hover h4, 
.photo-card:hover p {
    color: var(--white); /* Text turns white on hover */
}

.photo-card img {
    width: 100px; /* Big icons */
    height: 100px;
    object-fit: contain;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-card h4 {
    font-size: 24px; /* Larger text */
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.photo-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    transition: var(--transition);
}

/* Mobile Responsiveness for Photo Cards */
@media (max-width: 768px) {
    .photo-services-grid {
        grid-template-columns: 1fr; /* Stacks to 1 column on mobile */
        padding: 0 20px;
    }
}


/* Form Checkbox Grid */
.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}
.form-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}