:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    padding-top: 80px;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3366cc; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #764ba2; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.2; margin-bottom: 1rem; color: #222; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; }
.section-title { text-align: center; margin-bottom: 2rem; position: relative; padding-bottom: 1rem; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background-color: #667eea; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: #888; margin-top: -1.5rem; margin-bottom: 2rem; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.main-content { padding-top: 80px; }
section { padding: 5rem 0; }
.two-column { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }
.column { flex: 1; padding-left: 15px; padding-right: 15px; }
.grid { display: grid; grid-gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
 /* .site-header.scrolled { padding: 0.5rem 0; } */
.site-header .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.logo {
  width: auto;
  display: block;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; gap: 10px; transition: opacity 0.3s ease; }
.logo-link:hover { opacity: 0.8; }
.logo-img { height: 40px; width: auto; }
.logo-text { font-size: 1.5rem; font-weight: bold; color: #667eea; background: linear-gradient(135deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.navbar { flex: 1; display: flex; justify-content: center; }
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    gap: 20px; /* spacing between links */
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #667eea;
    transition: width 0.3s ease;
}
.nav-links a:hover:after {
    width: 100%;
}
.nav-links a:hover {
    color: #667eea;
}

.nav-container {
    display: flex;
    flex: 1;
    justify-content: center;
    position: relative;
}

.nav-end {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-left,
.nav-center,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-menu { display: flex; list-style: none; gap: 2rem; margin: 0; padding: 0; }
.nav-menu li { position: relative; }
.nav-menu a { color: #222; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; padding: 0.5rem 0; position: relative; transition: color 0.3s; text-decoration: none; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #667eea; transition: width 0.3s ease; }
.nav-menu a:hover::after, .nav-menu li.active a::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: #667eea; }
.header-actions { display: none; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 3px; margin: 5px 0; background-color: #667eea; transition: all 0.3s ease; }
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-hero::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero .container,
.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: #fff; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
.page-hero .breadcrumb { font-size: 1.1rem; margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.25rem; line-height: 1.6; margin-bottom: 2rem; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); }
.breadcrumb { display: flex; justify-content: center; color: rgba(255,255,255,0.8); margin-top: 1rem; }
.breadcrumb a { color: #fff; margin-right: 0.5rem; text-decoration: none; }
.breadcrumb a::after { content: '/'; margin-left: 0.5rem; }
.btn, .btn-primary, .btn-secondary { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 30px; font-weight: 600; text-align: center; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; text-decoration: none; border: 2px solid transparent; }
.btn-primary { background-color: #667eea; color: #fff; border: 2px solid #667eea; }
.btn-primary:hover { background-color: transparent; color: white; }
.btn-secondary { background-color: transparent; color: #667eea; border: 2px solid #667eea; }
.btn-secondary:hover { background-color: #667eea; color: #fff; }
.about-company h2, .our-story h2, .services-overview h2, .process-section h2, .values-section h2, .team-section h2, .cta-section h2 { padding-left: 0 !important; }
.our-story h4, .services-overview h3, .process-section h3, .values-section h4, .team-section h3 { padding-left: 0 !important; }
.about-company { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image img { border-radius: 5px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.our-story { padding: 80px 0; background: #f8f9fa; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-content { padding: 0 20px; }
.section-badge { display: inline-block; background: #667eea; color: white !important; padding: 8px 20px; border-radius: 25px; font-size: 14px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.story-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: #222; }
.lead-text { font-size: 1.2rem; color: #666; margin-bottom: 20px; font-weight: 500; }
.story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.highlight { display: flex; align-items: flex-start; gap: 15px; }
.highlight i { font-size: 2rem; color: #667eea; margin-top: 5px; min-width: 40px; }
.highlight h4 { margin-bottom: 8px; color: #222; }
.highlight p { color: #666; margin: 0; }
.story-visual { padding: 0 20px; }
.visual-card { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.visual-card h3 { margin-bottom: 25px; color: #222; font-size: 1.5rem; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { display: flex; align-items: center; margin-bottom: 15px; padding-left: 0; }
.feature-list li i { color: #667eea; margin-right: 15px; font-size: 1.2rem; min-width: 20px; }
.services-overview { padding: 80px 0; background: white; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: #222; }
.section-header p { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; }
.services-overview .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 60px; }
.services-overview .service-card { background: white; padding: 40px 30px; border-radius: 15px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #f0f0f0; }
.services-overview .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.services-overview .service-icon { width: 80px; height: 80px; background: #f0f8ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; transition: background 0.3s ease; }
.services-overview .service-card:hover .service-icon { background: #667eea; }
.services-overview .service-icon i { font-size: 2rem; color: #667eea; transition: color 0.3s ease; }
.services-overview .service-card:hover .service-icon i { color: white; }
.services-overview .service-card h3 { margin-bottom: 15px; color: #222; font-size: 1.4rem; }
.services-overview .service-card p { color: #666; line-height: 1.6; margin: 0; }
.process-section { padding: 80px 0; background: #f8f9fa; }
.process-section .process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 60px; position: relative; max-width: none; }
.process-section .process-timeline::before { display: none; }
.process-section .process-step { background: white; padding: 40px 30px; border-radius: 15px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: transform 0.3s ease; display: block; }
.process-section .process-step:hover { transform: translateY(-5px); }
.process-section .step-number { display: inline-flex; width: 60px; height: 60px; background: #667eea; color: white; border-radius: 50%; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 25px; }
.process-section .step-content h3 { margin-bottom: 15px; color: #222; font-size: 1.3rem; }
.process-section .step-content p { color: #666; line-height: 1.6; margin: 0; }
.values-section { padding: 80px 0; background: white; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.values-content { padding: 0 20px; }
.values-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: #222; }
.values-content > p { font-size: 1.1rem; color: #666; margin-bottom: 40px; }
.values-list { display: flex; flex-direction: column; gap: 30px; }
.value-item { display: flex; align-items: flex-start; gap: 20px; }
.value-icon { width: 60px; height: 60px; background: #f0f8ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon i { font-size: 1.5rem; color: #667eea; }
.value-content h4 { margin-bottom: 8px; color: #222; font-size: 1.2rem; }
.value-content p { color: #666; margin: 0; line-height: 1.6; }
.values-image { padding: 0 20px; }
.image-container { position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.values-img { width: 100%; height: 400px; object-fit: cover; }
.image-badge { position: absolute; top: 30px; right: 30px; background: rgba(74, 165, 227, 0.9); color: white; padding: 15px 20px; border-radius: 10px; text-align: center; backdrop-filter: blur(10px); }
.image-badge span { display: block; font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; }
.image-badge small { font-size: 0.9rem; opacity: 0.9; }
.team-section { padding: 80px 0; background: #f8f9fa; }
.team-section .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.team-section .team-member { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.team-section .team-member:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.team-section .member-image { position: relative; height: 300px; overflow: hidden; }
.team-section .member-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.member-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(74, 165, 227, 0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.team-section .member-image:hover .member-overlay { opacity: 1; }
.team-section .member-social { display: flex; gap: 15px; }
.team-section .member-social a { width: 45px; height: 45px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: background 0.3s ease; }
.team-section .member-social a:hover { background: rgba(255,255,255,0.3); }
.team-section .member-info { padding: 30px; text-align: center; }
.team-section .member-info h3 { margin-bottom: 8px; color: #222; font-size: 1.3rem; }
.team-section .member-role { color: #666; font-weight: 600; margin-bottom: 15px; font-size: 1rem; }
.team-section .member-bio { color: #666; line-height: 1.6; margin: 0; }
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-section h2 { font-size: 2.8rem; margin-bottom: 1.5rem; color: #fff; }
.cta-section p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; }

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.gallery-intro {
  background-color: #fff; 
  border-radius: 15px;    
  padding: 4rem 0;        
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;       
  max-width: 800px;       
  text-align: center; 
}

.gallery-filter {
    padding: 2rem 0;
    background: white;
}

.filter-controls {
    text-align: center;
}

.filter-btn {
    background: var(--bg-color);
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    padding: 4rem 0;
    background: var(--bg-color);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 15px;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.gallery-item.hidden {
    display: none;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-btn {
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    background-size: 200% 200%;
    background-position: left;
    transition: all 0.3s ease;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.nav-dropdown .dropdown-btn:hover {
    background-position: right;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.nav-dropdown .dropdown-content {
    position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: none;
  min-width: 180px;
  z-index: 9999;
}

.nav-dropdown .dropdown-content.active a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #667eea;
    transition: width 0.3s ease;
}

.nav-dropdown .dropdown-content.active {
    display: block;
}

.nav-dropdown .dropdown-content a {
    color: black;
    font-size: 14px;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
}
.nav-dropdown .dropdown-content.active a:hover {
    color: #667eea;
}

.nav-dropdown .dropdown-content.active a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
}


@media (max-width: 768px) {
  .nav-center {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 99;
  }

  .nav-center.active {
    max-height: 500px;
    padding-bottom: 30px;
    padding-top: 20px;
    margin-top: 25px;
  }

  .hamburger {
    display: block !important;
    background: none;
    font-size: 24px;
    border: none;
    cursor: pointer;
    padding: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
}

.footer-bottom {
    text-align: center;
}


/* Dropdown transition */
.nav-dropdown .dropdown-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.nav-dropdown .dropdown-content.active {
  max-height: 500px;
  opacity: 1;
}


.account-dropdown {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 9999;
    font-family: sans-serif;
}
.account-dropdown .btn {
    background-color: #333;
    color: #fff;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.account-dropdown .dropdown {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 180px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.account-dropdown .dropdown a {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}
.account-dropdown .dropdown a:hover {
    background-color: #f2f2f2;
}
.account-dropdown:hover .dropdown {
    display: block;
}

@media (max-width: 768px) {
    .nav-dropdown .dropdown-content {
        right: auto;
        left: 0;
        border-radius: 0;
        box-shadow: none;
        width: 100vw;
    }
    .page-hero {
        height: 300px;
    }
    .about-company,
    .our-story,
    .services-overview,
    .process-section,
    .values-section,
    .team-section,
    .map-section {
        padding: 3rem 0;
    }
    .nav-links {
        display: flex;
        gap: 20px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    body {
        padding-top: 60px;
    }
    .grid-container {
        grid-template-columns: 1fr;
    }
    .filter-btn {
        display: block;
        width: 100%;
        margin: 0.25rem 0;
    }
}

.about-company,
.our-story,
.services-overview,
.process-section,
.values-section,
.team-section,
.map-section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero .breadcrumb {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
    background: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.portfolio-preview {
    padding: 4rem 0;
    background: var(--bg-color);
}

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

.preview-grid .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.preview-grid .gallery-item:hover {
    transform: translateY(-10px);
}

.preview-grid .item-image {
    height: 250px;
    overflow: hidden;
}

.preview-grid .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-grid .item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.preview-grid .overlay-content {
    text-align: center;
    color: white;
}

.preview-grid .overlay-content h3 {
    color: white;
    margin-bottom: 1rem;
}
.admin-recent-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.recent-item:hover {
    transform: translateX(5px);
    background: #f0f0f0;
}

.recent-date {
    color: #666;
    font-size: 0.9rem;
}

.recent-title {
    color: var(--primary-color);
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.address-card {
    margin-top: 40px;
    text-align: center;
}

#startYourProject:hover {
    border: 2px solid white !important;
    color: white !important;
}

#viewOurWork {
    color: white !important;
    border: 2px solid white !important;
}

#viewOurWork:hover {
    background-color: #667eea !important;
    color: white !important;
    border: 2px solid #667eea !important;
}

#viewFullGallery:hover {
    color: #667eea;
}
.g-recaptcha {
    margin: 20px 0;
}

@media (max-width: 320px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left center;
    }
}