body{
    font-family:arial, sans-serif;
    background-color:#000;
    background-image: url('images/spark-bg.png'), url('images/camera_overlay.png');
    background-repeat:no-repeat, repeat-y;
    background-position: center top, right top;
    background-size:cover, auto;
    color:#fff;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

h1{
    text-align:center;
    margin: 10px 0 5px 0 ;
    padding:0;
}

h3, h4, h5{
    text-align:center;
}

/**********************NAVIGATION PANEL*********************/
.nav-panel{
    display:flex;
}

.nav-links{
    text-decoration:none;
    text-align:center;
    width:100%;
    margin:auto;
    color:#fff;
    padding:10px;
}

.nav-links:hover{
    color:#8A2BE2;
    border-radius:10px;
    text-shadow:0 0 8px rgba(138, 43, 226, 0.7);
}

/***************** Highlight Services & Hero Section *****************/
.hero {
    text-align: center;
    padding: 20px 20px 30px;
    background: rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 15px;
}

.cta-btn {
    background-color: gold;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.section-title {
    text-align: center;
    margin-top: 40px;
    color: #caa603;
}

/***************** Testimonials *****************/
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
    border-left: 3px solid gold;
}

/***************** Why Us Section *****************/
.why-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.reason {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
}

.community-impact {
    width: 80%;
    margin: 20px auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid gold;
}

.community-impact p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ccc;
}

.impact-img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/***************** Service & Portfolio Containers *****************/
.card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    padding: 0 10px;
}

.card {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #5e2d91, #b041ff);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.card h4 {
    margin-top: 10px;
    font-size: 20px;
}

.card p {
    margin-top: 8px;
    font-size: 15px;
}

.icon {
    display: block;
    margin: 0 auto 10px auto;
}

/***************** Single Testimonial Block *****************/
.testimones {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    margin: 10px auto;
    width: 70%;
    border-left: 4px solid blueviolet;
    border-radius: 8px;
}

/************************* BOTTOM CTA **************************/
.bottom-contact {
    text-decoration: none;
    color: #caa603;
    border: 1px solid #caa603;
    padding: 3px;
    border-radius: 5px;
    font-size: small;
}

.bottom-contact:hover {
    color: gold;
    border: 1px solid gold;
}


/******************************BOOKING PAGE***********************/
input, textarea, select{
    background-color:#b6b2b2;
    display:inline-block;
    margin:5px;
}

#booking-form{
    width:100%;
    text-align:center;
}

.checkbox-label{
    font-family:'Arial', sans-serif;
    font-size: 14px;
}

#terms-checkbox{
    margin-right: 8px;
    transform:scale(1.2);
}

#submit{
    background-color: #caa603;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

#submit:hover{
    background-color:rgb(192, 165, 9);
}

.terms-box {
  background-color: rgba(0, 0, 0, 0.6); /* dark semi-transparent background */
  border: 1px solid #c29336; /* gold border to match the theme */
  padding: 30px;
  margin: 40px auto;
  border-radius: 12px;
  max-width: 900px;
  color: #f5f5f5; /* light text for dark background */
  font-family: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.terms-box h4 {
  font-size: 24px;
  color: #c29336;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #c29336;
  padding-bottom: 10px;
}

.terms-box ol {
  padding-left: 20px;
  margin: 0;
  line-height: 1.8;
}

.terms-box li {
  margin-bottom: 20px;
  font-size: 16px;
  color: #e0e0e0;
}

.terms-box strong {
  font-weight: bold;
  color: #fff;
}

.terms-box ul {
  margin-top: 10px;
  padding-left: 25px;
  list-style-type: disc;
}

.terms-box ul li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #d0d0d0;
}

/*****************************CONTACT PAGE****************************/
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    width: 90%;
    margin: auto;
}

.contact-details, .contact-form {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 8px rgba(255,255,255,0.1);
}


.social-media-links{
    text-decoration:none;
    text-align:center;
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:500;
    margin-top:10px;
}

.social-media-links:hover{
    color:#caa603;
}

.contact-icons{
    display:block;
    margin:2px auto;
    margin-bottom:5px;
}
.business-info {
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid #caa603;
    border-radius: 8px;
    padding: 18px 24px;
    margin: 25px auto;
    max-width: 400px;
    color: #fff;
    text-align: left;
    box-shadow: 0 0 8px rgba(255,255,255,0.08);
}

.business-info h4 {
    color: #caa603;
    margin-bottom: 12px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.business-info p {
    margin: 8px 0;
    font-size: 15px;
}

.business-info strong {
    color: gold;
}
/****************************ABOUT PAGE*************************/
.about-team{
    text-align:center;
}

.about-team p{
    margin:20px;
    margin-top:0;
    font-size:medium;
}

.about-team p:first-of-type{
    margin-top:5px;
}

.logo-box{
    margin-top:5px;
    margin-bottom:5px;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
    height:auto;
}

.logo-image{
    margin: 0;
    padding: 0;
    width:30%;
    display:block;
    max-width:100%;
}

.equipment-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 20px 0;
}

.equipment-photo {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    border: 3px solid #8A2BE2;
    box-shadow: 0 4px 18px rgba(138, 43, 226, 0.18), 0 1.5px 8px rgba(255,255,255,0.10);
    background: #18122b;
    transition: transform 0.2s, box-shadow 0.2s;
}

.equipment-photo:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(202, 166, 3, 0.18), 0 2px 12px rgba(255,255,255,0.18);
    border-color: gold;
}

.team-section {
    width: 90%;
    margin: 40px auto;
    text-align: center;
    color: #fff;
}

.team-member {
    margin-bottom: 30px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #caa603;
}

.team-role {
    font-style: italic;
    color: #caa603;
    margin-bottom: 5px;
}

.team-bio {
    width: 60%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-grid .team-member {
    flex: 1 1 200px;
    max-width: 220px;
}

/********************SERVICES PAGE******************/
.services-wrapper {
    width: 80%;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #8A2BE2;
}

.service-section h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #caa603;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.service-list li {
    padding: 5px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list li:last-child {
    border-bottom: none;
}
.package-btn{
    text-align: center;
    margin-top: 30px;
}

/********************FAQs PAGE******************/
.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin: 10px auto;
    width: 80%;
    border-left: 4px solid gold;
    border-radius: 8px;
}

.faq-item h3 {
    margin: 0;
    color: #caa603;
}

.faq-item p {
    margin-top: 5px;
}

/*************PACKAGES PAGE**************/
.packages-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.package-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #8A2BE2;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  color: #fff;
}

.package-card h2 {
  text-align: center;
  color: gold;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.package-card li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card li:last-child {
  border-bottom: none;
}

.package-card.basic h2 {
  color: #66bb6a;
}

.package-card.standard h2 {
  color: #42a5f5;
}

.package-card.premium h2 {
  color: #f9a825;
}

.note-box {
  width: 90%;
  margin: 20px auto;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #caa603;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.important-note {
  color: #ffcc00;
  font-size: 14px;
  margin-top: 10px;
}

/********************PHOTOGRAPHY, VIDEOGRAPHY, DRONE & GALLERY PAGES******************/
.mini-gallery{
    text-align:center;
    margin:40px auto;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
    gap:15px;
    padding:10px;
    max-width: 1000px;
    margin:auto;
}

.gallery-grid img{
    width:100%;
    height:auto;
    border-radius:10px;
    cursor:pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover{
    transform: scale(1.05);
}

.gallery-link{
    color:#caa603;
}

.gallery-link:hover{
    color:#ffcc00;
}

.lightbox{
    display:none;
    position:fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

/* Fullscreen overlay container */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

/* Image inside the modal */
.image-modal img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
}

/* Close button */
.image-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Separate styles for portrait images */
.portrait-gallery img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

/* Separate styles for landscape images */
.landscape-gallery img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Highlight Videos Section */
.highlight-section {
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

.highlight-heading {
    color: goldenrod;
    font-size: 2rem;
    margin-bottom: 10px;
}

.highlight-subtext {
    margin-bottom: 30px;
    color: #ddd;
    font-size: 1rem;
}


/* Special Styling for "Common Uses" box */
.container:has(h3:contains("Common Uses")) {
    max-width: 700px;
    margin: 40px auto;
    background: linear-gradient(135deg, #2c1250, #602d91);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    color: #fff;
}

.container h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #f9f9f9;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.container ul.service-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px auto;
    text-align: center;
    color: #e0e0e0;
}

.container ul.service-list li {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.container ul.service-list li::before {
    content: "✔";
    color: #f9a825;
    font-size: 16px;
    position: absolute;
    left: 0;
}

.container .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f9a825;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 20px auto 0 auto; /* <-- Center horizontally */
}


.container .cta-btn:hover {
    background-color: #ffcc29;
    transform: scale(1.05);
}

@media (max-width: 600px) {
  body {
    padding: 0 10px;
    font-size: 15px;
  }

  .nav-panel {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-links {
    padding: 8px 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 15px;
  }

  .highlight-heading {
    font-size: 20px;
  }

  .highlight-subtext {
    font-size: 14px;
  }

  .video-card,
  .container,
  .service-list li {
    font-size: 14px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  /* Prevent images from shrinking too much */
  img {
    max-width: 100%;
    height: auto;
  }

  video {
    max-width: 100%;
    height: auto;
  }
}

/*************************FOOTER*************************/
footer{
    text-align:center;
    font-size:0.9em;
    color:#777;
}

footer p {
    font-size: 13px;
}