* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--main-font);
  scroll-behavior: smooth;
}
:root {
  --main-font: "Roboto", serif;
  --heading-font: "Bruno Ace", serif !important;
}
@media (max-width: 1400px) {
  .animation-container {
    bottom: -120px !important;
    left: 50% !important;
  }
}

@media (max-width: 999px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  .logo {
    margin-left: 20px !important;
    height: 60px !important;
    width: auto !important;
  }
  .logo-film {
    margin-left: 20px !important;
    height: 60px !important;
    width: auto !important;
  }
  .desktop-overlay {
    display: none !important;
  }

  .section-title {
    font-size: 1.6rem;
  }
  .core-values .value-img {
    width: 100px;
    height: 100px;
  }
  .core-values .value-title {
    font-size: 1.1rem;
  }
  .about_btn {
    margin: 2rem 0 !important;
    text-align: center !important;
  }
  .section-title {
    font-size: 2rem !important;
  }

  .section-subtitle {
    font-size: 1rem;
  }
  .portfolio-section {
    flex-direction: row;
  }
  /* Gallery Section */
  #gallery-section {
    padding: 4rem 0.5rem !important ;
  }

  .sidebar {
    margin-right: 30px;
    top: 15% !important;
    transform: translateY(-50%);
    width: 50px !important;
    opacity: 0;
    visibility: hidden;
  }

  .sidebar.visible {
    opacity: 1;
    visibility: visible;
  }

  .sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: baseline;
  }

  .sidebar li {
    font-size: 13px !important;
    color: #ccc;
    border-left: none;
  }

  .sidebar li.active {
    padding-left: 3px !important;
    color: #fff;
    font-weight: bold;
  }

  .image-container {
    margin-left: 10px !important;
    width: calc(100% - 20px);
    height: 60vh !important;
    overflow-y: auto;
  }

  .portfolio-image {
    height: 400px !important;
  }
  .view-more-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
    bottom: 15px !important;
    max-width: 90%;
  }
  .carousel {
    transform: translateX(0);
  }

  .review-card {
    flex: 0 0 100% !important;
    margin: 0 auto;
  }
  .masonry {
    column-count: 2 !important;
  }
  .carousel-controls {
    display: none;
  }

  .cards_container {
    padding: 0 15px;
  }
  .carousel-controls {
    display: flex !important;
  }

  .col-left,
  .col-right {
    max-width: 100% !important;
  }

  #map {
    height: 300px !important;
  }
  .whatsapp-container {
    padding: 8px 15px !important;
    border-radius: 40px !important;
  }

  .whatsapp-container img {
    width: 35px !important;
    height: 35px !important;
  }

  .whatsapp-container p {
    font-size: 0.9rem !important;
  }
  #services {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%) !important;
  }

  /* Mobile Navbar */
  .nav-container,
  .nav-container-films {
    position: fixed !important;
    top: 0 !important;
    right: -270px !important;
    width: 100% !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6),
      inset 0 0 20px rgba(255, 255, 255, 0.05) !important;
    z-index: 9999 !important;
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      opacity 0.4s ease-in-out !important;
    opacity: 0 !important;
    gap: 15px !important;
    padding-top: 7rem !important;
    pointer-events: none !important;
  }

  /* Background Colors */
  .nav-container {
    background-color: black !important;
  }

  .nav-container-films {
    background-color: white !important;
  }

  /* Show Class */
  .nav-container.show,
  .nav-container-films.show {
    right: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Nav Links */
  .nav-container a,
  .nav-container-films a {
    display: block !important;
    position: relative !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    transition: opacity 0.4s ease-in-out,
      transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    opacity: 0 !important;
    transform: translateX(40px) !important;
  }

  /* Color overrides */
  .nav-container a {
    color: white !important;
  }
  .nav-container-films a {
    color: black !important;
  }

  /* Animated links reveal */
  .nav-container.show a,
  .nav-container-films.show a {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  /* Arrow Icon for Links */
  .nav-container a::before,
  .nav-container-films a::before {
    content: "➜" !important;
    margin-right: 8px !important;
    font-size: 1.2rem !important;
  }

  /* Hover effects */
  .nav-container a:hover,
  .nav-container-films a:hover {
    color: var(--btn-hover) !important;
  }
  /* Nav Links Animation Delays */
  .nav-container a:nth-of-type(1),
  .nav-container-films a:nth-of-type(1) {
    transition-delay: 0.1s !important;
  }

  .nav-container a:nth-of-type(2),
  .nav-container-films a:nth-of-type(2) {
    transition-delay: 0.2s !important;
  }

  .nav-container a:nth-of-type(3),
  .nav-container-films a:nth-of-type(3) {
    transition-delay: 0.3s !important;
  }

  .nav-container a:nth-of-type(4),
  .nav-container-films a:nth-of-type(4) {
    transition-delay: 0.4s !important;
  }

  .nav-container a:nth-of-type(5),
  .nav-container-films a:nth-of-type(5) {
    transition-delay: 0.5s !important;
  }

  .nav-container a:nth-of-type(6),
  .nav-container-films a:nth-of-type(6) {
    transition-delay: 0.6s !important;
  }

  .nav-container a:nth-of-type(7),
  .nav-container-films a:nth-of-type(7) {
    transition-delay: 0.7s !important;
  }
  .nav-container a:nth-of-type(8),
  .nav-container-films a:nth-of-type(8) {
    transition-delay: 0.8s !important;
  }

  /* Social Links */
  .mobile-social {
    margin-top: auto !important;
    display: flex !important;
    width: 90% !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .mobile-social a::before {
    content: "" !important;
  }

  .mobile-social a {
    color: #fff !important;
    font-size: 1.8rem !important;
    transition: color 0.3s !important;
  }

  .mobile-social a:hover {
    color: var(--btn-hover) !important;
  }

  /* Divider */
  .nav-divider {
    border: none !important;
    border-top: 1px solid #fff !important;
    width: 100% !important;
    margin: 2rem 0 !important;
    opacity: 0.5 !important;
    color: white !important;
  }

  .nav-divider-films {
    border: none !important;
    border-top: 1px solid #000 !important;
    width: 100% !important;
    margin: 2rem 0 !important;
    opacity: 0.5 !important;
    color: black !important;
  }

  /* Hamburger Icon */
  .menu-toggle {
    display: block !important;
    margin-right: 5px !important;
    z-index: 10000 !important;
    transition: transform 0.3s ease-in-out !important;
    color: #fff;
    font-size: 28px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
  }

  .menu-toggle.active {
    transform: rotate(90deg) !important;
  }

  #category-name {
    font-size: 2.5rem !important;
    font-family: var(--heading-font) !important;
  }

  .footer-logo {
    width: auto;
    height: 80px !important;
  }
  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1.2rem;
  }
  .navbar.bg-white {
    background-color: white !important;
    transition: background-color 0.3s;
  }

  .navbar.bg-white .nav-link,
  .navbar.bg-white .navbar-brand {
    color: black !important;
    transition: color 0.3s;
  }

  .navbar-toggler {
    border-color: transparent;
  }

  .navbar.bg-white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .banner-text {
    max-width: 95%;
  }
  .contact-form {
    max-width: 95%;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px;
  }
  #review h3 {
    flex-direction: column;
    text-align: center;
  }
  .photoshoot_animaton {
    width: 500px !important;
    margin: -30px !important;
  }
  .animation-container {
    bottom: -120px !important;
    left: 50% !important;
  }
  .service-description p {
    font-size: 1rem;
  }

  .service-description h4 {
    font-size: 1.1rem;
  }

  .service-description ul li {
    font-size: 0.95rem;
  }
  .svg-img {
    width: 100% !important;
    height: auto;
  }

  .go-top-btn:hover {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
  }

  .go-top-btn::before,
  .go-top-btn:hover::before {
    display: none !important;
    content: "" !important;
  }
  .go-top-btn:hover .svgIcon {
    transform: translateY(0%) !important;
  }
  .additional_text {
    font-size: 1.5rem !important;
  }
  #portfolio {
    padding: 2rem 0rem 0rem !important;
  }

  .film-card .card-title {
    font-size: 0.95rem;
    text-align: left;
  }

  .film-card .card-text {
    font-size: 0.8rem;
    text-align: left;
  }

  .film-card .btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
  .film-title {
    font-size: 2.2rem;
  }

  .film-description {
    font-size: 1.1rem;
  }
  .film-bg-video {
    margin-bottom: 1.3rem;
  }
  .film-overlay {
    font-size: 16px;
    bottom: -10px !important;
  }
  /* about-page heading */
  #about-header {
    margin-top: 3rem !important;
  }
}

@media screen and (max-width: 576px) {
  .navbar-custom,
  .navbar-custom-page {
    top: -1px !important;
    padding: 0px 8px !important;
  }
  #about {
    text-align: center;
    padding: 2rem 0rem !important;
  }
  .about_heading {
    font-size: 2.5rem !important;
    font-weight: bold;
  }
  .head {
    font-size: 2.5rem !important;
    font-weight: bold;
  }
  .heading {
    font-size: 2.5rem !important;
    letter-spacing: 1px;
    color: black;
  }
  .services_text h3 {
    font-size: 3rem !important;
    color: #bcba8d;
  }
  .services_text p {
    font-size: 1.7rem !important;
  }

  #contact_box h3 {
    font-size: 3rem !important;
    color: #bcba8d;
  }

  #contact_box p {
    font-size: 2rem;
  }

  #expertise {
    text-align: center;
  }

  #contact_box {
    padding: 60px 10px !important;
    margin: 10px;
  }
  .filter-button:hover {
    transform: none !important;
  }
  .filter-button.active {
    border: 0px solid #ff5722 !important;
  }
  #about_page {
    text-align: center;
  }
  .contact-main .col-left {
    display: none;
  }
  .toast {
    width: 100%;
    font-size: 0.8rem;
  }

  .toast-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .toast-title {
    margin-left: 0;
    margin-top: 5px;
  }

  .toast-logo {
    margin-bottom: 5px;
  }

  .dismiss-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
  }
  #contact {
    text-align: center !important;
  }
  .services_text {
    text-align: center !important;
  }
  .social-icons {
    flex-direction: row !important;
    justify-content: space-evenly !important;
    margin-top: 15px !important;
  }
}
/* Responsive Design */
@media screen and (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  .footer {
    padding: 50px 0 0;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 800px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 20px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-social {
    text-align: center;
  }

  .footer-links h3::after,
  .footer-contact h3::after,
  .footer-social h3::after {
    left: 50% !important;
    transform: translateX(-50%);
    width: 50px;
  }

  .footer-contact p {
    justify-content: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    gap: 18px;
  }

  .footer-legal {
    padding: 20px;
    margin: 30px 0 0;
  }

  .footer-legal-link {
    margin: 0 8px;
    display: inline-block;
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding: 25px 20px;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding: 35px 0 0;
  }

  .footer-container {
    gap: 30px;
    padding: 0 15px;
  }

  .footer-logo {
    max-height: 55px;
  }

  .footer-brand p {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .footer-links ul li {
    margin: 10px 0;
  }

  .footer-links ul li a {
    font-size: 0.95rem;
  }

  .footer-contact p {
    font-size: 0.9rem;
    margin: 10px 0;
  }

  .footer-contact a {
    color: var(--btn-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .social-icons {
    gap: 15px;
  }

  .footer-icon {
    width: 48px;
    height: 48px;
  }

  .fs-3 {
    font-size: 1.4rem;
  }

  .footer-legal {
    padding: 15px;
    margin: 25px 0 0;
  }

  .footer-legal-link {
    margin: 3px 5px;
    font-size: 0.9rem;
  }

  .footer-legal span {
    margin: 0 5px;
  }

  .footer-bottom {
    padding: 20px 15px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    margin: 6px 0;
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  .footer-container {
    gap: 25px;
    padding: 0 12px;
  }

  .footer-logo {
    max-height: 50px;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-brand p:first-of-type {
    font-size: 1rem;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 1rem;
  }

  .footer-links ul li a,
  .footer-contact p {
    font-size: 0.85rem;
  }

  .social-icons {
    gap: 12px;
  }

  .footer-icon {
    width: 44px;
    height: 44px;
  }

  .fs-3 {
    font-size: 1.2rem;
  }

  .footer-legal {
    padding: 12px;
  }

  .footer-legal-link {
    display: block;
    margin: 5px 0;
    font-size: 0.85rem;
  }

  .footer-legal span {
    display: none;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 360px) {
  .footer-container {
    padding: 0 10px;
    gap: 20px;
  }

  .footer-logo {
    max-height: 45px;
  }

  .footer-brand p,
  .footer-links ul li a,
  .footer-contact p {
    font-size: 0.8rem;
  }

  .footer-icon {
    width: 40px;
    height: 40px;
  }

  .fs-3 {
    font-size: 1.1rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}

/* Large Tablets and Small Desktops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .photography-stats-section {
    padding: 2.5rem 1.5rem !important;
  }

  .photography-section-header {
    margin-bottom: 3rem !important;
  }

  .photography-section-title {
    font-size: 3rem !important;
  }

  .photography-counter-number {
    font-size: 3rem !important;
  }

  .photography-stat-text {
    font-size: 1rem !important;
  }

  .photography-stat-icon {
    font-size: 1.8rem !important;
  }
}

/* Medium Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
  .photography-stats-section {
    padding: 2rem 1rem !important;
  }

  .photography-section-header {
    margin-bottom: 2.5rem !important;
    text-align: center !important;
  }

  .photography-section-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  .photography-section-subtitle {
    font-size: 1.1rem !important;
    max-width: 500px !important;
    margin-bottom: 1.5rem !important;
  }

  .photography-header-badge {
    font-size: 0.8rem !important;
    padding: 0.4rem 1.2rem !important;
    margin-bottom: 1rem !important;
  }

  .photography-stat-card {
    padding: 1.5rem 1rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  .photography-counter-number {
    font-size: 2.5rem !important;
    letter-spacing: -1px !important;
  }

  .photography-stat-text {
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
  }

  .photography-stat-icon {
    font-size: 1.6rem !important;
  }

  /* Reduce hover effects for better touch experience */
  .photography-stat-card:hover {
    transform: translateY(-5px) !important;
  }
}

/* Small Tablets and Large Phones (max-width: 640px) */
@media screen and (max-width: 640px) {
  .photography-stats-section {
    padding: 1.5rem 0.8rem !important;
  }

  .photography-section-subtitle {
    font-size: 1rem !important;
    max-width: 400px !important;
    line-height: 1.5 !important;
  }

  .photography-stat-card {
    padding: 1.2rem 0.8rem !important;
    border-radius: 12px !important;
  }

  .photography-counter-number {
    font-size: 2rem !important;
    margin-bottom: 0.3rem !important;
  }

  .photography-stat-text {
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
  }

  .photography-stat-icon {
    font-size: 1.4rem !important;
    margin-top: 0.3rem !important;
  }

  .photography-header-badge {
    font-size: 0.75rem !important;
    padding: 0.3rem 1rem !important;
    gap: 0.3rem !important;
  }
}

/* Mobile Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
  .photography-stats-section {
    padding: 1rem 0.5rem !important;
    margin: 4rem 0 !important;
  }

  .photography-section-header {
    margin-bottom: 2rem !important;
  }

  .photography-section-title {
    font-size: 2.3rem !important;
    margin-bottom: 0.8rem !important;
  }

  .photography-section-subtitle {
    font-size: 0.9rem !important;
    max-width: 350px !important;
    margin-bottom: 1rem !important;
  }

  .photography-stat-card {
    padding: 1rem 0.6rem !important;
    margin-bottom: 0.8rem !important;
    border-radius: 10px !important;
  }

  .photography-counter-number {
    font-size: 1.8rem !important;
    letter-spacing: -0.5px !important;
  }

  .photography-stat-text {
    font-size: 0.8rem !important;
    letter-spacing: 0.3px !important;
  }

  .photography-stat-icon {
    font-size: 1.2rem !important;
  }

  .photography-header-badge {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.8rem !important;
  }

  /* Disable transform effects on very small screens for better performance */
  .photography-stat-card:hover {
    transform: none !important;
  }

  .photography-stat-card:hover .photography-stat-icon {
    transform: scale(1.1) !important;
  }
}

/* Landscape Phone Orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .photography-stats-section {
    padding: 1rem !important;
  }

  .photography-section-header {
    margin-bottom: 1.5rem !important;
  }

  .photography-section-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
  }

  .photography-section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }

  .photography-stat-card {
    padding: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }
}
/* about-page */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .founder-img {
    width: auto;
    height: 275px;
  }

  .founder-card {
    padding: 30px 20px;
  }

  .founder-bio {
    font-size: 0.95rem;
  }

  .story-section,
  .services-section,
  .team-section,
  .values-section,
  .cta-section {
    padding: 60px 0;
  }

  .service-item {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .value-item {
    margin-bottom: 30px;
  }

  .value-icon {
    font-size: 2rem;
  }

  .value-title {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-hero-section {
    padding: 60px 0;
  }

  .about-hero-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .founder-img {
    width: auto;
    height: 275px;
  }

  .founder-name {
    font-size: 1.5rem;
  }

  .story-content {
    font-size: 1rem;
  }

  .story-section,
  .services-section,
  .team-section,
  .values-section,
  .cta-section {
    padding: 50px 0;
  }

  .service-item {
    padding: 20px 15px;
  }

  .service-icon {
    font-size: 2.2rem;
  }

  .value-icon {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}
