    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    }
    html {
      scroll-behavior: smooth;
    }
    
    body {
   background-color: #f4f4f4;
    margin: 0; /* Remove default margin */
    padding: 0; /* Optional: remove default padding */
    font-family: Arial, sans-serif; /* Just an example */
    }


    /* Fixed Header */
   .fixed-header {
  position: fixed;
  top: 10px; /* adds a gap from top */
  left: 10px;
  right: 10px;
  width: auto; /* not 100% anymore */
  background-color: #db3a1d;
  color: white;
  z-index: 999;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 20px; /* rounded corners */
}

    .fixed-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .logo {
    font-size: 1.5rem;
    font-weight: bold;
    }
    .logo a{
       font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    }

    nav {
    display: flex;
    align-items: center;
    }

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

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

    .nav-links li a:hover {
    color: #ede6e5;
    }

    /* Toggle icon for mobile */
    .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    }

    /* Smooth scroll padding compensation */
    .hero, .business, .photography, footer {
    padding-top: 80px;
    }

    /* Responsive menu for mobile */
    @media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #ea7763 ;
        flex-direction: column;
        width: 182px;
        display: none;
        text-align: left;
        padding: 30px 20px;
        border-radius: 10px 10px 10px 10px;
    }

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

    .menu-toggle {
        display: block;
        margin-left: 15px;
    }
    }

    /* Hero Layout */
.hero {
  height: 100vh;
  background-color: #f4f4f4;
  color: #1a1a2e;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  width: 100%;
}

.hero-img img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:#db3a1d;
  transition: transform 0.3s ease;
}

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

.hero-text {
  flex: 1;
  min-width: 250px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #db3a1d /* dark navy */
}

.hero-text p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #2a3a80; /* softer navy */
}

/* Typing effect */
#typed-text {
  font-weight: bold;
  color: grey;
}
#cursor {
  font-weight: bold;
  color: #3a70ff;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Social Icons Styles */
.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* LinkedIn */
.social-icons a:nth-child(1) i {
    color: #0077B5;
    font-size: 28px;
}

/* Instagram */
.social-icons a:nth-child(2) i {
    color: #E4405F;
    font-size: 28px;
}

/* YouTube */
.social-icons a:nth-child(3) i {
    color: #FF0000;
    font-size: 28px;
}

/* Animations */
.animated-left {
  animation: slideInLeft 1.2s ease-out;
}
.animated-right {
  animation: slideInRight 1.4s ease-out;
}
@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 */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img {
    width: 280px;
    height: 280px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .social-icons {
    justify-content: center;
  }
}
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

/* About Me Section Styles */
/* .about-me {
   
   
} */

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-image {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    padding: 20px 0;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.about-text .roles {
    color: #666;
    font-size: 18px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    font-size: 16px;
}

.about-text .highlight {
    font-weight: bold;
    color: #333;
    margin: 25px 0;
    font-size: 18px;
}

.about-text .btn {
    display: inline-block;
    background: #db3a1d ;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 16px;
}

.about-text .btn:hover {
    background: #e74c31 ;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-image img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-image img {
        height: 300px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .about-text .roles {
        font-size: 16px;
    }
}

.thoughts-card-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 40px;
}

.thoughts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.thought-card {
  background: #fff;
  border-radius: 16px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thought-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.thought-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.thought-card h3 {
  font-size: 1.2rem;
  padding: 15px 15px 5px;
  color: #db3a1d ;
}

.thought-card p {
  font-size: 0.95rem;
  padding: 0 15px 15px;
  color: black ;
}


/* banner images show */
.image-banner {
  width: 90%;
  height: 200px;
  margin: 30px auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.banner-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 25px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.banner-text h2 {
  font-size: 20px;
  margin: 0;
}

.banner-text p {
  font-size: 14px;
  margin: 5px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .image-banner {
    height: 160px;
  }

  .banner-text h2 {
    font-size: 16px;
  }

  .banner-text p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .image-banner {
    height: 140px;
  }

  .banner-text {
    bottom: 15px;
    left: 15px;
  }

  .banner-text h2 {
    font-size: 14px;
  }

  .banner-text p {
    font-size: 12px;
  }
}

 
/* business */
.business-sites {
  padding: 60px 20px;
  background-color: #f4f4f4;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color:#db3a1d ;
}

.section-subtitle {
  font-size: 16px;
  color:black ;
  margin-bottom: 40px;
}

/* Grid layout for all cards */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
}

.site-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  width: 100%;
}

.site-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.site-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.site-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #db3a1d ;
}

.site-card p {
  font-size: 14px;
  color: black ;
  margin-bottom: 15px;
}

.site-card a {
  text-decoration: none;
  background: #db3a1d ;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
  transition: background 0.3s ease;
}

.site-card a:hover {
  background: #eb482b ;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .site-card img {
    height: 200px;
  }

  .site-card h3 {
    font-size: 18px;
  }

  .site-card p {
    font-size: 13px;
  }
}


    /* PHOTOGRAPHY SECTION */
    .photography {
    padding: 50px 20px;
   background-color: #f4f4f4;
    text-align: center;
    }

    .photography h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #db3a1d ;
    }

    .photography p {
    font-style: italic;
    color: #db3a1d ;
    margin-bottom: 30px;
    }

    .photo-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    }

    .photo-gallery img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    }

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

 
    /* RESPONSIVE */
    @media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .business-links {
        flex-direction: column;
        align-items: center;
    }

    .photo-gallery img {
        max-width: 90%;
    }
    }

    .view-more-container {
  margin-top: 30px;
}

.view-more-btn {
  display: inline-block;
  background-color: #db3a1d ;
  color: white;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 30px;
}

.view-more-btn:hover {
  background-color: #f3654c ;
  transform: scale(1.05);
}
.view-more-btn {
  width: auto;
}

/* gallerey page */
h2 {
      text-align: center;
      font-size: 2.5rem;
      padding: 0px 10px 10px;
      color: #333;
    }

    .gallery {
      column-count: 3;
      column-gap: 15px;
      padding: 20px;
    }

    .gallery-item {
      margin-bottom: 15px;
      position: relative;
      overflow: hidden;
      break-inside: avoid;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.02);
    }

    .gallery-item img {
      width: 100%;
      display: block;
      border-radius: 10px;
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
      filter: brightness(1.1);
    }

    /* Fullscreen View */
    .fullscreen-view {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.85);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .fullscreen-view img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    }

    @media (max-width: 768px) {
      .gallery {
        column-count: 2;
      }
    }

    @media (max-width: 480px) {
      .gallery {
        column-count: 1;
      }
    }


/* team members */

.professionals-section {
    padding: 15px 0;
   
}

.professionals-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #db3a1d ;
}

.professionals-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    justify-items: center;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.profile-content {
    padding: 15px;
}

.profile-content h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #db3a1d ;
}

.profile-content p {
    font-size: 0.9rem;
    color: black;
    margin: 5px 0 15px;
    line-height: 1.4;
}

.profile-content a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #db3a1d ;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.profile-content a:hover {
    background-color: #e65238 ;
}

@media (max-width: 768px) {
    .profile-card {
        width: 90%;
    }
}


  /* FOOTER */
footer {
  background: #f0f0f0;
  color: #444;
  text-align: center;
  padding: 18px 15px;
  font-size: 0.95rem;
  margin-top: 60px;
  border-top: 1px solid #ddd;
}

footer a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* thoughts page */

    .thought-detail-container {
      max-width: 800px;
      margin: 60px auto;
      background: #f4f4f4;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    .thought-detail-image {
      display: block;
      width: 600px;
      height: 350px;
      object-fit: cover;
      margin: 0 auto 25px;
      border-radius: 10px;
    }

    .thought-detail-container h1 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #007acc;
      text-align: center;
    }

    .thought-detail-container p {
      font-size: 1.05rem;
      color: #444;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }

    .back-button {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      background-color: #007acc;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .back-button:hover {
      background-color: #005f99;
    }

    @media (max-width: 650px) {
      .thought-detail-image {
        width: 100%;
        height: auto;
      }

      .thought-detail-container {
        padding: 20px;
      }
    }

    /* photographer page */

    
    
    body {
      font-family: 'Segoe UI', sans-serif;
     background-color: #f4f4f4;
      color: var(--text-color);
    }

    .container-1 {
      max-width: 1100px;
      margin: auto;
      padding: 0px 20px;
    }

    .profile-header {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 30px;
      align-items: center;
      background: white;
      margin-top: 90px;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      animation: fadeInUp 1s ease;
    }

    .profile-header img {
      width: 100%;
      max-width: 200px;
      height: 190px;
      border-radius: 50%;
      margin: auto;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .info h1 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #222;
    }

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

    .section {
      margin-top: 50px;
    }

    .section h2 {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      border-left: 4px solid var(--primary-color);
      padding-left: 10px;
    }

    .card-list {
      display: grid;
      gap: 15px;
    }

    .card-list li {
      background: var(--card-bg);
      padding: 18px 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .phothographer-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 15px;
    }

    .phothographer-gallery img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      height: 160px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

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

    .view-more-p {
      margin-top: 20px;
      display: inline-block;
    }

    .view-more-p a {
      background-color:#e55f94 ;
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .view-more-p a:hover {
      background: #c2185b;
    }

    .contact-box {
      background: var(--primary-color);
      color: white;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      margin-top: 60px;
      animation: fadeInUp 1s ease;
    }

    .contact-box p {
      margin: 8px 0;
    }

    /* Full Image Modal */
    .fullscreen-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .fullscreen-overlay img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .profile-header {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .info h1 {
        font-size: 1.6rem;
      }
    }

    