/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.m-nav-menu li {
  list-style-type: none;
  display: block;
}
.m-nav-menu li a {
  text-align: left !important;
  justify-content: flex-start !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
 }

.logo-img {
    height: 80px; 
    width: 160px;
    object-fit: contain;
}

.nav-links {    
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ed1c24;
}

/* Hero Section */
 


.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/bg-1.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
    animation: fadeIn 1.5s ease-out;
}

.btn {
    display: inline-block;
    background-color: #ed1c24;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeIn 2s ease-out;
}

.btn:hover {
    background-color: white;
    color: #ed1c24;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Portfolio Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 300px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin-bottom: 10px;
}

/* Section Backgrounds */
.nature {
    background-color: #e8f6f3;
}

.urban {
    background-color: #fef9e7;
}

.portrait {
    background-color: #f4ecf7;
}

.abstract {
    background-color: #eaf2f8;
}

.footer {
  background: #111;
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-left span {
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
}

.footer-left i {
  margin-right: 6px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  color: #ed1c24;
}

/* Center text neat */
.footer-center {
  text-align: center;
}

/* Responsive */
@media(max-width:768px){
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-left span {
    display: block;
    margin: 3px 0;
  }
}

/* Footer */
footer {
    background-color: black;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p, .footer-column a {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    background-color: white;
    color: #ed1c24;
     
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #ed1c24;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s;
}

.social-links a:hover {
 }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 20px;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

.section {
  padding: 50px 0;
  background: #f7f7f7;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #222;
}

.section-title p {
  color: #666;
}

.carousel-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 15px;
}

.carousel-overlay {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 20px 30px;
  border-radius: 10px;
  color: white;
  max-width: 80%;
  overflow:hidden;
}

.carousel-overlay h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-overlay p {
  font-size: 1.2rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev { left: 25px; }
.next { right: 25px; }

/* ----------- Large Laptop (1200px below) ----------- */
@media (max-width: 1200px) {
  .carousel-img {
    height: 70vh;
  }
  .carousel-overlay h3 {
    font-size: 1.8rem;
  }
  .carousel-overlay p {
    font-size: 1.1rem;
  }
}

/* ----------- Tablet Landscape (992px below) ----------- */
@media (max-width: 992px) {
  .carousel-img {
    height: 65vh;
  }
  .carousel-overlay {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 18px 25px;
    overflow:hidden;
  }
  .carousel-overlay h3 {
    font-size: 1.6rem;
  }
  .carousel-overlay p {
    font-size: 1rem;
  }
  .carousel-btn {
    font-size: 1.8rem;
    padding: 8px 13px;
  }
}

/* ----------- Tablet Portrait (768px below) ----------- */
@media (max-width: 768px) {
  .carousel-img {
    height: 60vh;
  }
  .carousel-overlay {
    padding: 15px 20px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
  }
  .carousel-overlay h3 {
    font-size: 1.4rem;
  }
  .carousel-overlay p {
    font-size: 0.95rem;
  }
  .prev { left: 15px; }
  .next { right: 15px; }
}

/* ----------- Mobile Large (576px below) ----------- */
@media (max-width: 576px) {
  .carousel-img {
    height: 50vh;
  }
  .carousel-overlay {
    bottom: 10px;
    padding: 12px 18px;
    eft: 50%;
    transform: translateX(-50%);
    overflow: hidden;
  }
  .carousel-overlay h3 {
    font-size: 1.25rem;
  }
  .carousel-overlay p {
    font-size: 0.9rem;
  }
  .carousel-btn {
    font-size: 1.5rem;
    padding: 6px 10px;
  }
}

/* ----------- Mobile Small (420px below) ----------- */
@media (max-width: 420px) {
  .carousel-img {
    height: 45vh;
  }
  .carousel-overlay {
    padding: 10px 15px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
  }
  .carousel-overlay h3 {
    font-size: 1.1rem;
  }
  .carousel-overlay p {
    font-size: 0.82rem;
  }
  .prev, .next {
    font-size: 1.1rem;
    padding: 5px 8px;
  }
}



.hero {
  background-size: cover !important;
  background-position: top center !important;
}
/* ✅ Hero Section Mobile UI Fix */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 60px; /* Top space for mobile header */
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 26px;   /* text smaller */
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .hero .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
  }
}
 /* Hide mobile header by default */
.mobile-header { display: none; }

/* ✅ Mobile Only */
@media(max-width: 768px) {

  header.desktop-header { display: none !important; }

  .mobile-header {
    display: block;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    z-index: 10000;
    border-bottom: 1px solid #eee;
  }

  .mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
  }

  .m-logo img {
    height: 45px;
  }

  .m-menu-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
  }

  /* Slide menu */
  .m-nav-menu {
    position: fixed;
    top: 0;
    text-align: left !important;
    padding-left: 20px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    gap: 25px;
    align-items: flex-start !important;
    transition: .4s;
    box-shadow: -5px 0 20px rgba(0,0,0,.2);
    z-index: 10000;
  }

  .m-nav-menu.open {
    right: 0;
  }

  .m-nav-menu a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
  }
}

.color-b{
    color: white;
}

.color-b:hover{
    color: #ed1c24;
}


.connect-btn {
  background: #ed1c24;
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  margin-left: 15px;
  display: inline-block;
}

/* Hover effect */
.connect-btn:hover {
  background: black;
  color: white;
}

/* ✅ Hide this button on mobile */
@media(max-width: 768px){
  .connect-btn {
    display: none;
  }
}



/* Mobile Connect Button */
.m-connect-btn {
  background: #ed1c24;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  color: white !important;
  text-align: center;
  display: block;
  margin: 10px;
}

/* .m-connect-btn:hover {
  background: #e67600;
} */




/* Body */
.kf-privacy-body {
    font-family: Arial, sans-serif;
    background: #f9fafb;
    margin: 0;
    padding: 0;
}

/* Header */
.kf-privacy-header {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e4e4e4;
}

.kf-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.kf-back-home-btn {
    padding: 8px 15px;
    background: #222;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
}

.kf-back-home-btn:hover {
    background: #444;
}

/* Content Box */
.kf-privacy-container {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
}

.kf-privacy-title {
    font-size: 36px;
    font-weight: 700;
    color: #000; /* BLACK */
    margin-bottom: 5px;
    text-align: center;
}

.kf-privacy-update {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.kf-privacy-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.kf-privacy-box h2 {
    font-size: 20px;
    margin-top: 20px;
}

.kf-privacy-box p,
.kf-privacy-box ul {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 600px){
    .kf-privacy-box {
        padding: 20px;
    }
}
 .color-b{
    color: black;
}
.color-b:hover{
    color: #ed1c24;
}

/* Body */
.kf-terms-body {
    font-family: Arial, sans-serif;
    background: #f9fafb;
    margin: 0;
    padding: 0;
}

/* Header */
.kf-terms-header {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.kf-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Back Button */
.kf-terms-back-btn {
    padding: 8px 15px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
}
.kf-terms-back-btn:hover {
    background: #444;
}

/* Content Wrapper */
.kf-terms-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
}

.kf-terms-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.kf-terms-date {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.kf-terms-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.kf-terms-box h2 {
    font-size: 20px;
    margin-top: 20px;
}

.kf-terms-box p,
.kf-terms-box ul {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 600px){
    .kf-terms-box {
        padding: 20px;
    }
}


.footer-2logo-img {
    height: 140px;
    width: 180px;
    margin-bottom: 10px;
}