* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
body {
  height: 100% !important;
  min-height: 100%;
  background: #ccc;
  font-size: 16px;
  
}
body {
  cursor: url("../asset/logo_cursor.ico") 16 16, auto;
}

a, button {
  cursor: url("../asset/logo_cursor.ico") 16 16, pointer;
}

input, textarea {
  cursor: text;
}

@media screen and (max-width: 620px) {

  html,
  body {
    font-size: 13px;
  }
}

/* 
	Typography
*/
h1 {
  font-size: 5em;
}

@media screen and (max-width: 620px) {
  h1 {
    font-size: 3em;
  }
}

h1,
h2 {
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

p {
  font-size: 1.35em;
  color: #888;
}

p.small {
  font-size: 1em;
}

a {
  outline: none !important;
}

/* 
	Modes
*/
.dark {
  background: #000;
  color: #555;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: #fff;
}

.white {
  background: #fff;
}

.dark.trans {
  background: rgba(0, 0, 0, 0.8);
}

.white.trans {
  background: rgba(255, 255, 255, 0.8);
}

.blue {
  background: #558099;
  color: #afcce0;
}

.blue h1,
.blue h2,
.blue h3,
.blue h4,
.blue h5,
.blue h6 {
  color: #fff;
}

/*
	Layout
*/
.content img {
  margin: 20px 0;
  max-width: 100%;
}

.centered {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 250px;
}

.centered.medium {
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
}

.centered.large {
  max-width: 920px !important;
  padding: 20px;
  width: 100%;
  min-height: 400px;
  margin: auto !important;
}

@media screen and (max-width: 620px) {
  .centered.large {
    margin: 0 auto;
  }
}

@media screen and (max-width: 992px) {
  .centered.large {
    position: relative !important;
    padding: 0 !important;
    height: auto !important;
  }
}

section {
  min-height: 100%;
  width: 100%;
  position: relative;
  padding: 75px 30px;
}

@media screen and (max-width: 620px) {
  section {
    padding: 50px 20px;
  }
}

section#home {
  height: 100%;
}

section#home p {
  color: #000;
}

section#about .centered {
  height: 250px;
}

section#portfolio .item {
  display: inline-block;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 620px) {
  section#portfolio .item {
    margin-bottom: 20px;
  }
}

section#portfolio .item img {
  max-width: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

section#portfolio .item .caption {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  color: #666;
  padding: 40px 30px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

section#portfolio .item .caption .centered {
  height: 100px;
}

section#portfolio .item .caption h3 {
  color: #000;
}

@media screen and (max-width: 620px) {
  section#portfolio .item .caption h3 {
    font-size: 1.2em;
  }
}

section#portfolio .item .caption p {
  font-size: 1em;
}

section#portfolio .item:hover .caption {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}

section#portfolio .item:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

section.title-block {
  height: 50% !important;
  min-height: 50%;
}

section .block {
  padding: 40px;
}

/* --- Shared Styles for BOTH images --- */
/* (This keeps your existing fixed position & size logic) */
img.fs {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
}

/* --- Default: Hide Mobile Image on Desktop --- */
.mobile-banner {
    display: none;
}

/* --- Mobile View: Switch Images --- */
@media screen and (max-width: 768px) {
    /* Hide the Desktop image */
    .desktop-banner {
        display: none;
    }
    
    /* Show the Mobile image */
    .mobile-banner {
        display: block;
        /* Optional: You can adjust object-position here if needed */
        object-position: center; 
    }
}

img.faded {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ms)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  background: #000;
}

form {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

form .form-control {
  margin-bottom: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

form input[type='submit'].form-control {
  margin-bottom: 0;
  background: #000;
  color: #fff;
  border: 0;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

form input[type='submit'].form-control:hover {
  background: #333;
}

form:hover {
  border: 1px solid #000;
}

.overlay {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.overlay img,
.overlay iframe {
  width: auto;
  max-width: 80%;
  max-height: 80%;
  height: auto;
}

.overlay .fa-times,
.overlay .prev,
.overlay .next {
  position: absolute;
  top: 5%;
  right: 3%;
  color: #555;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #555;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.overlay .fa-times:hover,
.overlay .prev:hover,
.overlay .next:hover {
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
}

.overlay .prev,
.overlay .next {
  top: 50%;
  margin-top: -20px;
}

.overlay .prev {
  left: 3%;
  right: auto;
}

.list {
  color: #999;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.list a {
  color: #999;
}

.list a:hover {
  text-decoration: none;
  color: #fff;
}

blockquote {
  font-family: Georgia;
  font-style: italic;
  font-size: 1.3em;
  color: #fff;
  border-left: 1px solid #222;
}

.btn {
  background: #000;
  color: #999;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  border: 2px solid #222;
}

.btn:hover {
  background: #222;
  color: #fff;
}

.post {
  border-bottom: 1px solid #222;
  padding: 20px 0;
  margin-bottom: 20px;
}

.large {
  max-width: 1100px;
  margin: 100px auto;
}

@media screen and (max-width: 620px) {
  .large {
    margin: 0 auto;
  }
}

.pagination li a {
  border-color: #222;
  background: transparent;
  color: #999;
}

.pagination li:hover a,
.pagination li.active a {
  background: #222;
  color: #fff;
  border-color: #222;
}

#searchform {
  padding: 0;
}

#searchform label {
  width: 100%;
  display: block;
  float: none;
  clear: both;
  line-height: 50px;
  color: #fff;
}

#searchform input[type="text"] {
  width: 75%;
  background: #000;
  border: 1px solid #222;
  float: left;
  padding: 10px 15px;
}

#searchform input[type="submit"] {
  width: 25%;
  background: #222;
  padding: 10px 5px;
  border: 1px solid #222;
  color: #fff;
}

/*
	Navigation
*/
nav#main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #000;
  border-bottom: 1px solid #000000;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 620px) {
  nav#main:after {
    display: block;
  }
}

nav#main .logo {
  height: 80px;
  line-height: 80px;
  padding: 0 40px;
  position: absolute;
  left: 0;
  color: #ffffff;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 620px) {
  nav#main .logo {
    padding: 0 12px;
  }
}

nav#main ul {
  list-style: none;
  height: 80px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 620px) {
  nav#main ul {
    text-align: right;
  }
}

nav#main ul li {
  height: 80px;
  display: inline-block;
  border-left: 1px solid #222;
  position: relative;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

nav#main ul li a {
  height: 80px;
  display: inline-block;
  padding: 0 40px;
  font-size: 16px;
  line-height: 80px;
  color: #ffffff;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 620px) {
  nav#main ul li a {
    padding: 0 12px;
  }
}

nav#main ul li a:hover {
  text-decoration: none;
  background: #222;
  color: #ff8741;
}

nav#main ul li a.active {
  background: #222;
  color: #ff8741;
}

nav#main ul li ul.dropdown {
  position: absolute;
  display: none;
  bottom: 81px;
  right: 0;
  background: #fff;
}

nav#main ul li ul.dropdown li {
  display: block;
  width: 200px;
  height: 40px;
  border: 0;
  border-top: 1px solid #ccc;
}

nav#main ul li ul.dropdown li a {
  line-height: 40px;
  height: 40px;
  padding: 0;
  color: #888;
  display: block;
}

nav#main ul li ul.dropdown li:hover {
  border-top: 1px solid #ccc;
}

nav#main ul li ul.dropdown li:hover a {
  background: #ededed;
  color: #000;
}

nav#main ul li:last-child {
  border-right: 1px solid #222;
}

nav#main ul li:hover ul.dropdown {
  display: block;
}

@media screen and (max-width: 620px) {
  nav#main ul {
    position: absolute;
    width: 100%;
    bottom: -2px;
  }

  nav#main ul:after {
    font-family: 'fontAwesome';
    content: '\f0c9';
    height: 79px;
    font-size: 21px;
    width: 80px;
    display: block;
    line-height: 80px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    float: right;
    text-align: center;
    background: #000;
    /* ADD THIS LINE BELOW TO MAKE IT ORANGE */
    color: #ff8741;
  }

  nav#main ul li {
    display: none;
    min-height: 30px;
    height: auto;
    line-height: 30px;
    position: relative;
  }

  nav#main ul li ul.dropdown {
    display: block;
    position: relative;
    text-align: center;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  nav#main ul li ul.dropdown li {
    width: 100%;
    background: #222;
    border-color: #222 !important;
  }

  nav#main ul li ul.dropdown li a {
    width: 100%;
  }

  nav#main ul li ul.dropdown:after {
    display: none;
  }

  nav#main ul.hover {
    height: auto;
    background: #000;
  }

  nav#main ul.hover:after {
    width: 100%;
    float: none;
    margin: 0 auto;
    content: '\f00d';
  }

  nav#main ul.hover li {
    display: block;
    float: none;
    width: 100%;
    position: relative;
    text-align: center;
    line-height: 50px;
    border-bottom: 0 !important;
    border-top: 0 !important;
  }

  nav#main ul.hover li:hover {
    line-height: 50px;
  }

  nav#main ul.hover li:hover ul.dropdown {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
  }

  nav#main ul.hover li:hover ul.dropdown li {
    width: 100%;
    line-height: 50px;
  }

  nav#main ul.hover li:hover ul.dropdown li a {
    width: 100%;
  }

  nav#main ul.hover li:hover ul.dropdown li:hover {
    line-height: 50px;
  }

  nav#main ul.hover li a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
  }
}

nav#main.affix {
  position: fixed;
  padding-top: 12px;
  z-index: 9999;
  top: 0;
  bottom: auto;
  height: 70px;
  border-bottom: 1px solid #222;
}

nav#main.affix .logo {
  height: 480px;
  line-height: 40px;
  padding: 0 10px;
}

nav#main.affix ul {
  height: 40px;
}

nav#main.affix ul li {
  height: 40px;
}

nav#main.affix ul li a {
  height: 40px;
  line-height: 40px;
}

nav#main.affix ul ul.dropdown {
  bottom: auto;
  top: 40px;
}

@media screen and (max-width: 620px) {
  nav#main.affix ul ul.dropdown {
    top: auto;
    bottom: auto;
  }
}

nav#main.affix ul ul.dropdown li {
  background: #fff;
}

@media screen and (max-width: 620px) {
  nav#main.affix ul:after {
    height: 39px;
    line-height: 40px;
  }

  nav#main.affix ul li {
    background: #000;
    height: auto;
    min-height: 40px;
  }

  nav#main.affix ul li ul.dropdown {
    height: auto;
  }
}
/* --- WhatsApp Icon Styles --- */
.whatsapp-link {
    position: absolute;
    right: 20px; /* Spacing from the right edge */
    top: 0;
    height: 80px; /* Matches navbar height */
    line-height: 80px; /* Vertically centers the icon */
    color: #25D366; /* WhatsApp Green */
    font-size: 32px; /* Nice big icon size */
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-link:hover {
    color: #fff; /* Turns white on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

/* --- Mobile View (Max-width 620px) --- */
@media screen and (max-width: 620px) {
    .whatsapp-link {
        /* Move left to avoid overlapping the hamburger menu (which is 80px wide) */
        right: 90px; 
        font-size: 28px; /* Slightly smaller on mobile */
       
    }
}

/* --- Sticky Navbar State (Affix) --- */
/* Shrinks the icon when navbar shrinks to 40px */
nav#main.affix .whatsapp-link {
    height: 40px;   
    line-height: 40px;
    padding-top: 20px;
    font-size: 24px;
}

/* --- Affix (Sticky) State Adjustment --- */
/* This ensures the button shrinks when the navbar shrinks to 40px */
nav#main.affix .whatsapp-btn {
    height: 40px;
    
    line-height: 40px;
    font-size: 14px;
}

.social-icons {
  margin: 20px 0;
}

.icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #ddd;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #999;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.icon:hover {
  color: #000;
  text-decoration: none;
  border: 1px solid #555;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
}

.form-control-feedback {
  display: none;
}

.has-feedback .form-control-feedback {
  display: inline-block;
  margin-top: -24px;
}

.loader {
  border: 2px solid #555;
  width: 50px;
  height: 50px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  -webkit-animation: load 1s infinite;
  /* Chrome, Safari, Opera */
  animation: load .3s infinite;
}

@-webkit-keyframes load {
  0% {
    height: 50px;
    -webkit-transform: rotate(0);
  }

  50% {
    height: 0;
    margin-top: 0;
    -webkit-transform: rotate(180deg);
  }

  100% {
    height: 50px;
    margin-top: -25px;
    -webkit-transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    height: 50px;
  }

  50% {
    height: 0;
    margin-top: 0;
  }

  100% {
    height: 50px;
    margin-top: -25px;
  }
}


/* 
	own css 

*/

/* --- Special Footer Container --- */
.sf-wrapper {
    background-color: #000000 !important;
    color: #a0a0a0; /* Light grey text */
    font-family: 'Arial', sans-serif; /* Clean sans-serif font */
    padding-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

.sf-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    gap: 40px;
}

/* --- Columns Setup --- */
.sf-column {
    flex: 1;
    min-width: 250px;
}

/* Specific widths based on image reference */
.sf-about {
    flex: 2; /* The text section is wider */
}

/* --- Typography --- */
.sf-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
    margin-top: 0;
}

.sf-text {
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* --- Gallery Grid (Shots) --- */
.sf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    max-width: 300px; /* Limits the size of the grid */
}

.sf-gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1; /* Ensures perfect squares */
    object-fit: cover;
    filter: grayscale(20%); /* Optional: adds a slight aesthetic tint */
    transition: 0.3s;
}

.sf-gallery-grid img:hover {
    filter: grayscale(0%);
    opacity: 0.8;
}

/* --- Contact List --- */
.sf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.sf-contact-list i {
    color: #ffffff;
    margin-top: 4px;
    margin-right: 15px;
    width: 15px; /* Aligns icons vertically */
}

/* --- Bottom Social Bar --- */
.sf-bottom-bar {
    background-color: #444444; /* Dark grey bar */
    display: flex;
    justify-content: space-between; /* Spreads them evenly like the image */
}

.sf-social-link {
    flex: 1; /* Each link takes equal space */
    text-align: center;
    padding: 25px 0;
    color: #000000;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
    border-right: 1px solid #333; /* Optional divider */
}

.sf-social-link:last-child {
    border-right: none;
}

.sf-social-link:hover {
    background-color: #000;
    color: #fff;
}

/* --- Mobile Responsiveness (Upgraded) --- */
@media (max-width: 768px) {
    /* Stack columns vertically */
    .sf-container {
        flex-direction: column;
        align-items: center; /* Centers everything */
        padding-bottom: 30px;
        gap: 40px;
    }

    /* Make columns full width */
    .sf-column {
        width: 100%;
        text-align: center; /* Centers text for mobile aesthetics */
        min-width: unset; /* Remove minimum width restriction */
    }

    /* Center the gallery grid specifically */
    .sf-gallery-grid {
        margin: 0 auto;
        /* Optional: make images slightly larger on mobile */
        max-width: 100%; 
        grid-template-columns: repeat(3, 1fr); 
    }

    /* Fix alignment of contact list items */
    .sf-contact-list {
        display: inline-block; /* Helps centering the block */
        text-align: left; /* Keeps the address text readable */
    }

    .sf-contact-list li {
        justify-content: center; /* Centers the list item content */
        text-align: left;
    }

    /* Adjust social icons for touch screens */
    .sf-bottom-bar {
        flex-wrap: wrap; /* Allows wrapping on very small screens */
    }

    .sf-social-link {
        padding: 20px 0; /* Slightly smaller padding for vertical space */
        font-size: 20px; /* Larger icons for easier tapping */
    }
}


/* --- Wrapper (Reduced Height) --- */
.svc-dark-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1485470733090-0a5e72417281?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* REDUCED PADDING HERE: 60px top/bottom (was 120px) */
    padding: 250px 20px; 
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
}

/* --- New Main Heading (Big & Minimal) --- */
.svc-heading-box {
    text-align: center;
    margin-bottom: 50px; /* Space between title and grid */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.svc-main-title {
    font-size: 48px; /* Big */
    font-weight: 300; /* Minimal (Thin) */
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 2px; /* Adds elegance */
}

.svc-sub-title {
    font-size: 16px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 4px; /* Wide spacing for minimal look */
    margin: 0;
}

/* --- Grid Layout --- */
.svc-dark-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; /* Slightly tighter gap for minimal feel */
}

/* --- Card Styling --- */
.svc-dark-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Fainter border */
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.svc-dark-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px); /* Gentle lift */
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* --- Icon Styling --- */
.svc-icon-box {
    margin-bottom: 20px;
}

.svc-icon-box i {
    font-size: 36px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.svc-dark-card:hover .svc-icon-box i {
    transform: scale(1.1);
}

/* --- Typography --- */
.svc-card-title {
    font-size: 22px;
    color: #ffffff;
    font-weight: 500; /* Medium weight */
    margin: 0 0 15px 0;
}

.svc-dark-text {
    font-size: 15px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 25px;
}

/* --- Button Styling --- */
.svc-dark-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0.8;
}

.svc-dark-btn i {
    margin-left: 8px;
    transition: 0.3s;
}

.svc-dark-btn:hover {
    opacity: 1;
}

.svc-dark-btn:hover i {
    margin-left: 12px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .svc-dark-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-main-title {
        font-size: 36px; /* Smaller title on mobile */
    }
    .svc-sub-title {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .svc-dark-container {
        grid-template-columns: 1fr;
    }
}

/* --- General Settings --- */
.au-wrapper {
    display: flex;
    min-height: 80vh; /* Ensures the section is tall and substantial */
    font-family: 'Montserrat', sans-serif; /* Use a strong sans-serif font */
    overflow: hidden; /* Prevents scrollbars from massive text */
}

/* --- Left Column: Image --- */
.au-image-col {
    flex: 0 0 40%; /* Takes up 40% of the width on desktop */
    position: relative;
}

.au-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the space without stretching */
    display: block;
}

/* --- Middle Column: Vertical Banner --- */
.au-vertical-banner {
    flex: 0 0 60px; /* Fixed width for the thin strip */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}

.au-vertical-text {
    /* Rotates the text 90 degrees counter-clockwise */
    transform: rotate(-90deg);
    white-space: nowrap;
    font-weight: 800;
    font-size: px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

/* --- Right Column: Gradient Content --- */
.au-content-col {
    flex: 1; /* Takes up the remaining space */
    /* Vibrant Orange-to-Yellow Gradient matching the image */
    background: linear-gradient(135deg, #ff5f00, #ffb300);
    padding: 60px 8%; /* Significant padding for breathing room */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- The REALLY BIG Text --- */
.au-big-title-container {
    text-align: right; /* Aligns to the right as per reference */
    margin-bottom: 40px;
}

.au-big-title {
    /* Using Viewport Width (vw) makes it huge and responsive */
    font-size: 13vw; 
    line-height: 0.85; /* Tighter line height for stacking */
    font-weight: 900; /* Extra Bold */
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

/* --- 1. Update Text Block (Desktop Settings) --- */
.au-text-block {
    margin-left: auto;
    margin-right: auto;
    /* Increased width so big text fits nicely on desktop */
    width: 100%; 
    max-width: 900px; 
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* BIG TEXT for Desktop View */
.au-intro {
    font-size: 36px; /* VERY BIG for Desktop */
    font-weight: 800; /* Extra Bold */
    margin-bottom: 30px;
    line-height: 1.2; /* Tighter line height for big text */
    letter-spacing: -1px; /* Tighter spacing for modern look */
    color: #f0f0f0;
}

.au-body {
    font-size: 24px; /* Medium Big for Desktop */
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #f0f0f0; /* Slight contrast */
}

.au-outro {
    font-size: 20px;
    font-weight: 700;
    color: #f0f0f0;
}

/* =========================================
   Responsive Media Queries
========================================= */

/* --- Tablet & Small Desktop (Max width 1024px) --- */
@media (max-width: 1024px) {
    .au-big-title {
        font-size: 120px; /* Switch to fixed size so it doesn't get too small */
    }
    .au-vertical-text {
        font-size: 18px; /* Smaller vertical text */
    }
}

/* --- 2. Update Responsive Section (Mobile Settings) --- */
@media (max-width: 900px) {
    .au-wrapper {
        flex-direction: column;
        height: auto; 
        min-height: auto;
    }

    .au-image-col {
        flex: none;
        width: 100%;
        height: 350px;
    }

    .au-vertical-banner { display: none; }

    .au-content-col {
        flex: none;
        width: 100%;
        padding: 50px 20px;
        box-sizing: border-box;
    }

    .au-big-title-container {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .au-big-title {
        font-size: 18vw; 
    }

    .au-text-block {
        max-width: 100%;
        padding: 0 10px;
    }

    /* FORCE TEXT SMALL ON MOBILE (Important!) */
    .au-intro { 
        font-size: 18px; /* Reset to readable mobile size */
        line-height: 1.5;
        font-weight: 700;
        letter-spacing: 0;
    }
    
    .au-body { 
        font-size: 15px; /* Reset to readable mobile size */
        line-height: 1.6;
        font-weight: 500;
    }
    
    .au-outro { 
        font-size: 14px; 
    }
}

/* =========================================
   FIXED Mobile Responsive Section
   (Replace your existing media query with this)
========================================= */

@media (max-width: 768px) {
    /* 1. Stack columns vertically */
    .au-wrapper {
        flex-direction: column;
        height: auto;
        min-height: auto;
        width: 100%;
        overflow-x: hidden; /* Prevents the whole page from scrolling sideways */
    }

    /* 2. Image resizing */
    .au-image-col {
        flex: none;
        width: 100%;
        height: 300px; /* Reduced height to save space */
    }

    /* 3. Hide vertical strip */
    .au-vertical-banner {
        display: none;
    }

    /* 4. Fix Content Column */
    .au-content-col {
        width: 100%; 
        padding: 40px 20px; /* Comfortable padding */
        box-sizing: border-box; /* Critical: keeps padding INSIDE the 100% width */
        text-align: center;
        display: block; /* Ensures it behaves like a standard block */
    }

    /* 5. Fix Title Sizing */
    .au-big-title-container {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .au-big-title {
        font-size: 15vw; /* Slightly smaller to fit better */
        line-height: 0.9;
        width: 100%;
    }

    /* 6. CRITICAL FIX FOR TEXT OVERFLOW */
    .au-text-block {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .au-text-block p {
        /* These lines force the text to wrap inside the box */
        white-space: normal; 
        overflow-wrap: break-word; 
        word-wrap: break-word;
        word-break: break-word; 
        
        /* Font adjustments for readability */
        font-size: 14px; 
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 10px; /* Extra safety padding */
    }
}





/* --- Wrapper (Orange Background) --- */
.cu-wrapper-v2 {
    position: relative;
    background: linear-gradient(135deg, #ff9a00, #ff5f00);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertical content */
    align-items: center;
    font-family: 'Oswald', sans-serif;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* --- Massive Text --- */
.cu-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.8;
    z-index: 2;
    /* Removed margin-bottom so we can control button spacing directly */
}

.cu-line-1, .cu-line-2 {
    font-size: 18vw; /* Massive size kept as requested */
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -4px;
    margin: 0;
    padding: 0;
}

/* --- Pill Button (Fixed Position) --- */
.cu-pill-btn {
    /* Changed from negative margin to positive to stop overlapping */
    margin-top: 30px; 
    background: #000;
    color: #fff;
    padding: 15px 45px; /* Slightly bigger button */
    border-radius: 50px;
    font-size: 18px; /* Bigger text in button */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    z-index: 3;
    font-family: 'Oswald', sans-serif;
}

.cu-pill-btn:hover {
    transform: scale(1.1);
}

.cu-pill-btn i {
    margin-left: 10px;
    font-size: 14px;
}

/* --- Corner Positioning (Fixed Sizes) --- */
.cu-corner-text {
    position: absolute;
    /* INCREASED FONT SIZE HERE */
    font-size: 18px; 
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Moved corners slightly further from edge for better look */
.tl { top: 40px; left: 40px; }
.br { bottom: 40px; right: 40px; }

.bl { 
    bottom: 40px; 
    left: 40px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.cu-icon { 
    color: #000; 
    font-size: 24px; /* Bigger Icons */
    transition: 0.3s; 
}
.cu-icon:hover { transform: translateY(-3px); }

/* --- Popup Modal --- */
.cu-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cu-modal-content {
    background: #fff;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    position: relative;
    text-align: left;
}

.cu-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #000;
}

.cu-form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: sans-serif;
}

.cu-form-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .cu-line-1, .cu-line-2 { font-size: 22vw; }
    
    .cu-pill-btn { 
        font-size: 14px; 
        padding: 12px 30px; 
        margin-top: 20px; 
    }
    
    /* Adjust corners on mobile so they don't overlap content */
    .cu-corner-text {
        font-size: 14px; /* Slightly smaller on mobile but still readable */
        position: relative; /* Stop absolute positioning on mobile */
        top: auto; left: auto; right: auto; bottom: auto;
        margin: 10px 0;
    }
    
    /* Re-order elements for mobile stack */
    .cu-wrapper-v2 {
        justify-content: center;
    }
    
    /* Force corners to bottom or top */
    .tl { order: -1; margin-bottom: 20px; }
    .bl, .br { margin-top: 20px; }
}