body {
    font-family: 'Arial', sans-serif; /* A common, readable font */
    margin: 0; /* Reset default body margin */
    padding: 0;
    background-color: #000; /* Solid black background */
    color: #e0e8e6; /* Dark gray for good text readability */
    line-height: 1.6; /* Comfortable line spacing for text */
    padding-top: 80px; /* Ensure content doesn't overlap with sticky header */
}

/* HEADER Styles */
/* Import artistic Google Font */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body {
  font-family: Arial, sans-serif;
  padding-top: 100px; /* Prevent content from hiding under fixed header */
  background-color: #0f0e0e;
  margin: 0;
}

/* Fixed sticky header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1e1e1e;
  color: rgb(28, 28, 28);
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Artistic brand name */
.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: #ffcc00;
  letter-spacing: 1px;
}

/* Navigation links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ffcc00;
}

/* Call Now Button */
.call-button {
  background-color: #ffcc00;
  color: #000;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s;
}

.call-button:hover {
  background-color: #e6b800;
}

/* style.css */

/* Reset some default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  padding-top: 80px; /* Prevent content from hiding under sticky header */
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #222;
  color: rgb(30, 28, 28);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffcc00;
}


/* Reset some default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {


    font-family: 'Segoe UI', sans-serif;
    padding-top: 100px; /* Adjust this based on your header height */
    background-color: #171616;
  
  
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1e1e1e;
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffcc00;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-text h1.brand-name {
    margin: 0;
    font-size: 3em;
    font-family: 'Arial Rounded MT Bold', 'Helvetica Rounded', sans-serif;
    color: #c3b53c;
    text-shadow: 3px 3px 5px rgba(185, 16, 16, 0.3);
    letter-spacing: 0.03em;
    font-weight: bold;
}

/* Responsive - Adjust Brand size and header for small screens */
@media (max-width: 768px) {
    .header-text h1.brand-name {
        font-size: 2em;
    }
    .header {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-text h1.brand-name {
        font-size: 1.5em;
    }
}

.brand-name {
    font-family: 'Pacifico', cursive; /* Example artistic font */
    font-size: 50px;
    color: rgba(12, 190, 244, 0.334);
}

/* Call Now button Center */
.call-now-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation menu Right */
.navbar {
    margin-left: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

/* Hamburger menu for Mobile */
.hamburger {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: black;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 10px 0;
        border-radius: 8px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 10px;
        border-bottom: 1px solid white;
        text-align: center;
    }
}

.call-now-btn {
    background-color: #000;
    color: white;
    font-size: 1.1em;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.call-now-btn:hover {
    background-color: #121111;
}

/* Social Floating Icons */
.social-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.social-float a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.social-float a img {
    width: 30px;
    height: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.3em;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #000; /* Solid black background for sections */
    border-radius: 8px; /* Optional: Slightly rounded corners for sections */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for sections */
}

footer {
    background-color: #000; /* Solid black background for footer */
    color: #f4f1de;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Basic button style */
.button {
    display: inline-block;
    background-color: #000; /* Match header color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.button:hover {
    background-color: #000; /* Darker shade on hover */
}

/* Basic secondary button style */
.button-secondary {
    display: inline-block;
    background-color: #c19a6b; /* A sandy brown */
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 0.9em;
}

.button-secondary:hover {
    background-color: #a8865e;
}

/* In slider.css or style.css */
#photo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.slide {
    min-width: 100%;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    opacity: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Introduction Section */
#introduction {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.welcome-box {
    background-color: #007bff; /* Blue background for the box */
    color: white;
    padding: 20px;
    border-radius: 10px; /* Add more rounding for a noticeable curve */
    margin: 0 auto 30px auto; /* Center the box and add margin below */
    display: inline-block; /* Adjust width based on content */
}

.welcome-heading {
    font-size: 2.5em; /* Adjust size within the box */
    margin: 0; /* Remove default heading margin */
    font-weight: 900; /* Make the text extra bold */
}

.tagline {
    font-size: 1.8em; /* Style for the h2 tagline */
    color: #2c97b8;
    margin-bottom: 25px;
    font-style: italic;
}

.intro-notes {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1em;
    text-align: left; /* Align the notes to the left for better readability */
}

.logo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
}

.logo-round {
    width: 100px;
    height: 100px;
    border-radius: 70%;
    object-fit: cover;
    border: 2px solid #ccc;
    transition: transform 0.3s ease;
}

.logo-round:hover {
    transform: scale(1.00);
}

/* ===== PARTNER SECTION ===== */
.partners-section {
    overflow: hidden;
    background-color: #f5f5f5;
    padding: 30px 0;
}

.partners-wrapper {
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    width: calc(250px * 10); /* adjust based on number of logos */
    animation: scroll 30s linear infinite;
}

.partners-track img {
    width: 150px;
    margin: 0 20px;
    object-fit: contain;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .partners-track {
        animation: scroll 40s linear infinite; /* slower on mobile */
    }

    .partners-track img {
        width: 100px;
        margin: 0 10px;
    }
}

.partners-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-content {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scrollLeft 30s linear infinite;
}

.partner-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid black; /* Changed border color to black */
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    border-color: #fffdfb;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-section {
    background: linear-gradient(145deg, #fff6e5, #2375af);
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 95%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 4px dashed #ffbe76;
}

.partners-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #21b9be, #36b8cb);
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.logo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.logo-round {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 15px #f6b93b;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.logo-round:hover {
    transform: scale(1.15) rotate(2deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 25px #e67e22;
    border-color: #f6e58d;
}

/* Soft floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== MEET OUR ARTISTS CAROUSEL ===== */
.meet-artists-carousel {
    position: relative;
    background: linear-gradient(120deg, #fffaf0, #f0f8ff);
    padding: 60px 20px;
    overflow: hidden;
    text-align: center;
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    color: #c19a6b;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    animation: scrollCarousel 30s linear infinite;
    gap: 40px;
}

.artist-bubble {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: transform 0.5s, box-shadow 0.5s;
    cursor: pointer;
    flex-shrink: 0;
}

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

.artist-bubble h3 {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-size: 1em;
    background: rgba(255,255,255,0.7);
    padding: 5px 10px;
    border-radius: 20px;
    opacity: 0;
    transition: bottom 0.3s, opacity 0.3s;
}

/* Zoom and Show Name on Hover */
.artist-bubble:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.artist-bubble:hover h3 {
    bottom: 10px;
    opacity: 1;
}

/* Carousel Animation */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel {
        animation: scrollCarouselMobile 20s linear infinite;
        gap: 20px;
    }
    .artist-bubble {
        width: 140px;
        height: 140px;
    }
}

@keyframes scrollCarouselMobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.artists-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #fdfbfb, #ebedee);
    position: relative;
    overflow: hidden;
}

.artists-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    z-index: 2;
}

.bubbles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    animation: floatContainer 120s linear infinite; /* slower */
    z-index: 2;
}

.bubble {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bubble:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

/* Floating animation for bubbles */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Movement animation for container */
@keyframes floatContainer {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Sparkles animation */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(white 1px, transparent 1px),
                    radial-gradient(white 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    animation: sparkleMove 30s linear infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes sparkleMove {
    from { background-position: 0 0, 10px 10px; }
    to { background-position: 1000px 500px, 1010px 510px; }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .bubbles-container {
        gap: 20px;
    }

    .bubble {
        width: 90px;
        height: 90px;
    }

    .artists-section h2 {
        font-size: 2em;
    }
}

.artist-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.artist-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: 4px solid #f6b93b;
}

.artist-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.artist-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.artist-info {
    padding: 20px;
    background: linear-gradient(120deg, #ffeaa7, #fab1a0);
    color: #333;
    border-top: 2px dashed #e17055;
}

.artist-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.artist-info p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
}

.artist-card:hover {
    border-color: #fdcb6e;
    box-shadow: 0 0 20px #fdcb6e, 0 0 30px #fab1a0;
}

#feature-highlights {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #2685bc, #2c8ab5);
    text-align: center;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 95%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#feature-highlights h2 {
    font-size: 2.5rem;
    color: #ced7dc;
    margin-bottom: 50px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.diamond-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.diamond-box {
    width: 180px;
    height: 180px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ffd700, #ffa500);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.diamond-box:hover {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.diamond-content {
    transform: rotate(-45deg);
    text-align: center;
    padding: 10px;
    color: #0a386d;
}

.diamond-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.diamond-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

#workshops-map {
  padding: 40px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.map-headline {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
}

#india-map {
  height: 500px;
  width: 100%;
  border: 3px solid #ffcc00;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}




#our-impact {
    background: linear-gradient(to right, #fefcea, #f1da36);
    padding: 80px 30px;
    text-align: center;
    border-radius: 25px;
    margin: 80px auto;
    max-width: 1300px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.artist-profile {
    text-align: center;
    margin: 50px;
}

.zoomable {
    width: 300px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoomable.zoomed {
    transform: scale(2);
    cursor: zoom-out;
    z-index: 1000;
    position: relative;
}

#our-impact h2 {
    font-size: 3em;
    color: #222;
    margin-bottom: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #8ac926, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-profile {
    text-align: center;
    margin: 50px;
}

.zoomable {
    width: 300px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoomable.zoomed {
    transform: scale(2);
    cursor: zoom-out;
    z-index: 1000;
    position: relative;
}

.impact-slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.impact-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.impact-number {
    font-size: 3em;
    font-weight: 900;
    color: #ff006e;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.impact-label {
    font-size: 1.1em;
    color: #333;
    font-weight: 700;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.impact-box:hover {
    transform: scale(1.08); /* zoom on hover */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.workshop-highlight {
    background: linear-gradient(135deg, #ffe29f, #ffa99f);
    padding: 60px 30px;
    text-align: center;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 90%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.workshop-content h2 {
    font-size: 2.8em;
    color: #5c2b0e;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 1px 1px 3px #fff2e2;
}

.workshop-text {
    font-size: 1.3em;
    color: #3e2723;
    margin-bottom: 30px;
    line-height: 1.6;
}

.workshop-button {
    display: inline-block;
    background: #ff6f61;
    color: white;
    font-size: 1.2em;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.3s ease;
}

.workshop-button:hover {
    background: #e05245;
    transform: scale(1.05);
}

.testimonials-section {
    background: linear-gradient(to right, #fceabb, #f8b500);
    padding: 60px 30px;
    border-radius: 20px;
    text-align: center;
    margin: 60px auto;
    max-width: 95%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonials-section h2 {
    font-size: 2.8em;
    color: #5e3200;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-size: 1.1em;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-stars {
    font-size: 1.3em;
    color: #f39c12;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #8b4513;
    margin: 0;
}

.contact-section {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    text-align: center;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 95%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #333;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-icon img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover img {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
    background: linear-gradient(135deg, #8c8787, #c4c4c4);
    padding: 70px 40px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 80px auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

contact-form-section h2 {
    font-size: 2.8em;
    color: #1557e7;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: capitalize;
}

.contact-form-section .contact-subtitle {
    font-size: 1.2em;
    color: #0daadf;
    margin-bottom: 40px;
}

.hs-form-frame {
    margin-top: 20px;
}

/* Style the 'Call Now' button */
.call-now-btn {
    background-color: #000000; /* Call to action color */
    color: white;
    font-size: 1.1em;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 20px;
    display: inline-flex;
    align-items: center; /* Aligns the icon and text vertically */
    transition: background-color 0.3s ease;
}

.call-now-btn i {
    margin-right: 10px; /* Add space between the icon and text */
    font-size: 1.3em; /* Make the icon a little bigger */
}

.call-now-btn:hover {
    background-color: #121111; /* Darker shade on hover */
}

.nav-links { display: flex; /* desktop default */ }

@media (max-width:768px){
    .nav-links { display: none; flex-direction: column; }
    .nav-links.active { display: flex; }
    .hamburger-menu { display: block; }
}

/* Gallery Section Wrapper */
#gallery {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headings */
.gallery-section h3 {
    font-size: 2em;
    color: #1982c4;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1em;
    color: #131212;
    margin-bottom: 20px;
    text-align: center;
}

/* Shared Grid for Both Sections */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Optional: space between sections */
.gallery-section {
    margin-bottom: 60px;
}

/* Style for "See More Photos" Button */
.see-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.1em;
    color: #fff;
    background-color: #1982c4;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.see-more-btn:hover {
    background-color: #156b92;
}

.background-section {
    background-image: url('images/gallery\ background.jpg'); /* Path to your background image */
    background-size: cover;  /* Make sure the image covers the whole section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* No repetition */
    padding: 100px 20px; /* Add space inside the section */
    color: white; /* Text color for contrast */
    text-align: center; /* Center align the text */
}

.background-section .content {
    background: rgba(0, 0, 0, 0.5); /* Optional: Dark overlay for better readability */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

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

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 80px; /* space for sticky header */
}

/* Header */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* Left Section */
.left-section {
    display: flex;
    align-items: center;
}

/* Hamburger */
.hamburger-menu {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: none; /* hidden on desktop */
}

/* Brand Name */
.brand-name {
    color: #c3b53c;
    font-family: 'Great Vibes', cursive, 'Segoe Script', 'Brush Script MT', sans-serif;
    font-size: 2.5em;
    margin-left: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Call Now Button */
.call-now-btn {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.call-now-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        display: none; /* hide menu by default on mobile */
        position: absolute;
        top: 80px;
        right: 20px;
        background-color: #000;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-links.active {
        display: flex; /* show menu when active */
    }

    .nav-links li {
        margin-bottom: 15px;
        text-align: right;
    }

    .call-now-btn {
        display: none;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    padding: 10px 16px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.whatsapp-label {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header basic style */
.main-header {
    position: sticky;
    top: 0;
    background: black;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/* Brand and hamburger */
.header-left {
    display: flex;
    align-items: center;
}

/* Hamburger initially hidden on desktop */
.hamburger-menu {
    font-size: 26px;
    cursor: pointer;
    margin-right: 15px;
    display: none; /* hidden by default */
}

/* Nav links */
.nav-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    margin-left: 20px;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Call Now Button */
.call-now-btn {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* Mobile view */
@media (max-width: 768px) {
    .nav-links ul {
        position: absolute;
        top: 60px;
        left: 0;
        background: black;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-links ul.active {
        display: flex;
    }

    .hamburger-menu {
        display: block; /* Show hamburger on mobile */
    }

    .call-now-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .social-float {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 999;
        display: flex;
        gap: 10px;
    }

    .social-float img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .social-float img:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    }
}

/* Floating Social Icons */
.social-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.social-float a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.social-float a img {
    width: 30px; /* Adjusted size */
    height: 30px; /* Adjusted size */
}

/* Social Media Links */
.social-media-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 30px; /* Adjusted size */
    height: 30px; /* Adjusted size */
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}


body {
  font-family: 'Segoe UI', sans-serif;
  padding-top: 80px;
  background-color: #191717;
}

/* Sticky header styling */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #1e1e1e;
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo with brand highlight */
.logo {
  font-size: 28px;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.brand-highlight {
  color: #ffcc00;
}

/* Navigation styling */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffcc00;
}

/* Call button styling */
.call-button {
  background-color: #204abe;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s;
}

.call-button:hover {
  background-color: #e6b800;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.brand-small {
  font-size: 18px;
  font-weight: normal;
  color: #ccc;
  font-style: italic;
}

.brand-highlight {
  color: #ffcc00;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-normal {
  color: white;
  font-size: 28px;
  font-weight: 500;
  
}
body {
  font-family: sans-serif;
  margin: 0;
  background-color: #f8f9fa; /* Light background */
}

.services-section {
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px; /* Limit overall width */
  margin: 40px auto; /* Center the section */
  background-color: #ffffff; /* White background for the section */
  border-radius: 8px; /* Optional: Rounded corners for the section */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
}

/* Title Styling with Lines */
.section-title {
  display: inline-block; /* Allows centering and pseudo-elements */
  position: relative;
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
  font-weight: bold;
}

.section-title span {
  padding: 0 20px; /* Space between text and lines */
  background-color: #ffffff; /* Match section background */
  position: relative; /* To stay above pseudo-elements */
  z-index: 1;
}

.section-title::before,
.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px; /* Adjust line length */
  height: 2px; /* Line thickness */
  background-color: #f0c419; /* Gold/Yellow color from image */
  z-index: 0;
}

.section-title::before {
  left: -60px; /* Position left line */
}

.section-title::after {
  right: -60px; /* Position right line */
}


/* Grid Layout */
.services-grid {
  display: grid;
  /* Create 4 equal columns by default */
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; /* Space between cards */
}

/* Service Card Styling */
.service-card {
  background-color: #20201f;
  border: 1px solid #20201f;
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */
}

.service-card:hover {
  transform: translateY(-5px); /* Lift card slightly on hover */
  box-shadow: 0 4px 15px rgba(32, 32, 31, 0.1); /* Add shadow on hover */
}

.service-card .icon {
  font-size: 2.5em; /* Icon size */
  color: #20201f; /* Icon color */
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2em;
  color: #20201f; /* Title color */
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9em;
  color: #20201f; /* Text color */
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-card .read-more {
  display: inline-block;
  font-size: 0.9em;
  color: #20201f; /* Link color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.service-card .read-more:hover {
  color: #20201f; /* Hover color */
  text-decoration: underline;
}
.service-card {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */
}

.service-card:hover {
  transform: translateY(-5px); /* Lift card slightly on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Add shadow on hover */
}

.service-card .icon {
  font-size: 2.5em; /* Icon size */
  color: #007bff; /* Icon color (adjust as needed) */
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2em;
  color: #20201f; /* Gold/Yellow color for title */
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-card .read-more {
  display: inline-block;
  font-size: 0.9em;
  color: #e6b800; /* Match title color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.service-card .read-more:hover {
  color: #c49a00; /* Darker shade on hover */
  text-decoration: underline;
}


/* --- Responsive Adjustments --- */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
  .section-title::before,
  .section-title::after {
    width: 30px; /* Shorter lines */
  }
   .section-title::before { left: -40px; }
   .section-title::after { right: -40px; }
}

/* Mobile devices */
@media (max-width: 576px) {
  .services-grid {
      grid-template-columns: 1fr; /* 1 column */
  }
   .section-title {
      font-size: 1.5em;
  }
  .section-title::before,
  .section-title::after {
    display: none; /* Hide lines on very small screens */
  }
   .service-card {
      padding: 20px;
  }
}
#about-us {
  padding: 40px 20px;
  background-color: #101010; /* Changed to white background */
  text-align: center;
}

#about-us h2 {
  margin-bottom: 30px;
  color: #1eadcd;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}

.about-content p {
  margin-bottom: 15px;
  color: #eee9e9;
}

.artist-img {
  width: 150px; /* Adjust size as needed */
  height: auto;
  border-radius: 10px; /* Optional: Add rounded corners */
  margin: 0 15px 15px 0; /* Margin for spacing */
  shape-outside: circle(50%); /* Optional: Text wraps around a circle shape */
  float: left; /* Images float to the left */
}

.artist-img.right {
  float: right;
  margin: 0 0 15px 15px; /* Adjust margin for right-floated image */
  
}

.contact-form-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
    margin-top: 20px;
}

.contact-form-section .social-icons a {
    display: inline-block;
    width: 50px; /* Set the size of the icons */
    height: 50px;
    border-radius: 50%; /* Make the icons circular */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(19, 37, 150, 0.2); /* Add a subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section .social-icons a:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0 6px 12px rgba(10, 25, 158, 0.3); /* Enhance shadow on hover */
}

.contact-form-section .social-icons img {
    width: 100%; /* Ensure the image fits the container */
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover the container */
}

footer img {
    display: block;
    margin: 20px auto; /* Center the logo in the footer */
    width: 150px; /* Set the width of the logo */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

/* Contact Us Section */
.contact-us {
  padding: 60px 20px;
  background: linear-gradient(135deg, #b72d2d, #111111);
  text-align: center;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(242, 240, 240, 0.1);
}

.contact-us h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-us p {
  font-size: 1.1rem;
  color: blue; /* Changed text color to solid blue */
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  background-color: #204abe;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #1a3f8b;
}

/* Social Media Icons */
.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-social-icons img {
  width: 20px;
  height: 20px;
}

.contact-us h2 {
  font-size: 2.5rem;
  color: #1eadcd; /* Match the color of other headers */
  margin-bottom: 30px;
  text-transform: uppercase; /* Consistent styling */
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* Subtle shadow for emphasis */
}
.map-container {
    position: relative;
    text-align: center;
  }
  
  .responsive-map {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
  }
  .sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.sticky-header .nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.sticky-header .call-button {
  text-decoration: none;
  color: #fff;
  background: #1678be;
  padding: 5px 10px;
  border-radius: 5px;
}
















