body {
  margin: 0;
  background: linear-gradient(135deg, #ffb347 0%, #ffccff 100%);
  font-family: 'Quicksand', Arial, sans-serif;
  color: #333;
}
header {
  background: #4ecdc4;
  color: #fff;
  text-align: center;
}
.logo {
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 80px;
} 
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}
nav a:hover {
  background: #ffb347;
  color: #222;
}
.banner {
  padding: 40px 20px;
  background: linear-gradient(90deg, #ffe259, #ffa751);
  text-align: center;
}
.notice {
  margin-top: 20px;
  padding: 10px;
  background: #20c997;
  color: #fff;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
}
section {
  padding: 30px 20px;
  margin: 10px 0;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form input, form textarea {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
}
form button {
  background: #4ecdc4;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
form button:hover {
  background: #ffa751;
  color: #222;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}
.whatsapp-icon-img {
  width: 80px;
  height: 80px;
}
@media (max-width: 600px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 15px; right: 15px; }
  .whatsapp-icon-img { width: 28px; height: 28px; }
}
@media (max-width: 600px) {
  .gallery-grid img { max-width: 100px;}
  section { padding: 12px;}
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {

    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
   
}

.nav-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Banner Image */
.hero {
    position: relative;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(1.2);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(102, 126, 234, 0.7) 0%, 
        rgba(118, 75, 162, 0.6) 50%,
        rgba(255, 107, 53, 0.5) 100%
    );
    z-index: -1;
}

.hero-container {

    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.hero-content h1 span {
    color: #ffd700;
    text-shadow: 0 3px 10px rgba(255, 215, 0, 0.6);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-services {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: slideInLeft 1s ease-out 0.6s both;
}
#services {
  background: #fff; /* White background */
  padding: 100px 20px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  color: #333;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow: hidden;
}

#services .container {

  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Smaller tiles */
  gap: 25px;
}
#services .section-heading {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 1px 2px 5px rgba(0,0,0,0.1);
}
.service-card {
  background: linear-gradient(135deg, #ffc3a0, #ffb347, #4ecdc4); /* Pastel colorful gradients */
  border-radius: 15px;
  padding: 22px 18px;
  box-shadow: 0 6px 14px rgba(78, 205, 196, 0.4);
  text-align: center;
  transition: all 0.35s ease;
  cursor: default;
  color: #1a1a1a;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px; /* Reduced size */
}


.service-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 25px rgba(78, 205, 196, 0.6);
  background-image: url('images/services-art.jpg');
}
.service-icon {
  font-size: 44px;
  margin-bottom: 14px;
  color: #1a1a1a;
  text-shadow: 0 0 4px rgba(0,0,0,0.1);
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25em;
  color: #0d4659;
  letter-spacing: 1.1px;
}
.service-card p {
  font-size: 0.95em;
  color: #222;
  flex-grow: 1;
  min-height: 50px;
}
@media (max-width: 768px) {
  #services h2 {
    font-size: 2em;
  }
  .service-icon {
    font-size: 38px;
  }
  .service-card {
    padding: 18px 12px;
    min-height: 250px;
  }
}
@media (max-width: 480px) {
  #services .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #services {
    padding: 40px 15px;
  }
  .service-card {
    padding: 16px 10px;
    min-height: 230px;
  }
  .service-icon {
    font-size: 34px;
  }
}


.boxed-heading {
  width: 100%;
  background: linear-gradient(90deg, #ffb347, #4ecdc4 100%);
  padding: 18px 0;
  border-radius: 12px 12px 0 0;
  margin-bottom: 28px;
  text-align: center;
}

.boxed-heading h2 {
  margin: 0;
  font-size: 2.1em;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.06);
  font-weight: bold;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 23px;
}
@media (max-width: 600px) {
  #services {
    padding: 22px 7px;
  }
  .services-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-icon {
    font-size: 36px;
  }
}


.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInRight 1s ease-out 0.8s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-services {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-box {
  flex: 1.3 1 370px;
  min-width: 320px;
  max-width: 540px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(38, 127, 197, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr .25fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-img {
	margin-top:30px;
	width: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .contact {
        padding: 60px 0;
    }
}
/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Lightbox Modal for Gallery */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ff6b35;
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .lightbox-content {
        width: 95%;
    }
}

/* Testimonial Scroller */
.testimonial-scroller {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.09);
    margin: 2rem 0;
    padding: 2.5rem 1.5rem;
    min-height: 200px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 1.5rem;
    text-align: center;
    opacity: 0.98;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #212121;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.testimonial-author {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 0.5rem 0.95rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.2s;
    box-shadow: 0 3px 12px rgba(255,107,53,0.10);
    z-index: 10;
    outline: none;
}
.testimonial-prev { left: 10px; }
.testimonial-next { right: 10px; }
.testimonial-prev:hover, .testimonial-next:hover {
    background: #f7931e;
}

@media (max-width: 600px) {
    .testimonial-card { padding: 0 0.2rem; }
    .testimonial-scroller { padding: 1.5rem 0.3rem; }
    .testimonial-prev, .testimonial-next { top: 90%; }
}
   #gallery {

  margin: 50px auto;
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(38, 127, 197, 0.1);
}
#gallery h2 {
  font-size: 2.8em;
  color: #2577ba;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 36px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(38, 127, 197, 0.12);
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  background: #f9faff;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(38, 127, 197, 0.2);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  padding: 14px 16px;
  font-size: 1em;
  color: #177d71;
  font-weight: 600;
  text-align: center;
  background: #e8f8f6;
}
@media (max-width: 768px) {
  #gallery h2 {
    font-size: 2.1em;
    margin-bottom: 28px;
  }
  .gallery-item img {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  #gallery {
    padding: 8px 10px;
  }
  .gallery-item figcaption {
    font-size: 0.9em;
  }
  .gallery-item img {
    height: 120px;
  }
}
#awards {

  margin: 40px auto 60px auto;
  padding: 25px 16px 35px 16px;
  background: #f8faff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(38,127,197,0.08);
}
#awards h2 {
  font-size: 2.2em;
  color: #c16319;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
  justify-items: center;
}

.award-card {
  display: flex;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 5px 16px rgba(205,150,80,0.11);
  padding: 18px 14px;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.award-card:hover {
  box-shadow: 0 14px 32px rgba(205,150,80,0.21);
  transform: translateY(-5px) scale(1.025);
}
.award-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
  background: #eef8e2;
  box-shadow: 0 2px 7px rgba(193,99,25,0.05);
}
.award-card h3 {
  margin: 0 0 6px 0;
  color: #f89b0a;
  font-size: 1.07em;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.award-card p {
  margin: 0;
  color: #5c3d16;
  font-size: 0.98em;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  #awards h2 { font-size: 1.37em; }
  .award-card { flex-direction: column; padding: 12px 8px; text-align: center; min-height: 90px;}
  .award-card img { width: 38px; height: 38px;}
}


.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 24px;
  justify-content: center;
}
.gallery-thumb {
  width: 150px;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(38,127,197,0.13);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(38,127,197,0.16);
}

/* Lightbox Modal Styling */
#gallery-modal {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.90);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
#gallery-modal img {
  max-width: 82vw; max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 8px 40px #2577ba22;
}
.close-modal {
  position: absolute;
  top: 38px; right: 64px;
  font-size: 2.5em; color: #fff;
  cursor: pointer; font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .gallery-thumb { width: 70px; height: 70px; }
  .close-modal { right: 18px; top: 18px; }
}

.modal-prev, .modal-next {
  position: absolute;
  top: 50%;
  font-size: 3em;
  color: #fff;
  background: rgba(60,80,120,0.15);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; user-select: none;
  transform: translateY(-50%);
  z-index: 100;
}
.modal-prev { left: 42px; }
.modal-next { right: 42px; }
.modal-prev:hover, .modal-next:hover {
  background: #2577ba;
  color: #fff;
}
@media (max-width: 600px) {
  .modal-prev, .modal-next { width: 32px; height: 32px; font-size: 2em; left: 10px; right: 10px;}
}
