
/* Dark Theme Block*/
/* सिस्टम/ब्राउज़र की डार्क थीम को इग्नोर करके हमेशा लाइट थीम फोर्स करें */
:root {
  color-scheme: only light; /* ब्राउज़र को बताता है कि सिर्फ लाइट थीम सपोर्ट है */
}

body {
  background-color: white !important;
  color: black !important;
}

/* अगर कोई एलिमेंट डार्क थीम से प्रभावित हो रहा है */
.header, .footer, .button {
  background-color: white !important;
  color: black !important;
}


input, textarea, select {
  color-scheme: light !important;
  background-color: white !important;
  color: black !important;
}



/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

@font-face {
  font-family: 'ClashDisplay-Bold';
  src: url('fonts/ClashDisplay-Bold.woff2') format('woff2'),
       url('fonts/ClashDisplay-Bold.woff') format('woff'),
       url('fonts/ClashDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    color: black;
    text-align: center;
}

/* Header Section */
.header-section {
    background: linear-gradient(345deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    min-height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

@media (max-width: 600px) {
    .header-section {
        min-height: 350px;
        padding-bottom: 0;
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 300px;
    background: white;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.logo {
    font-family: 'ClashDisplay-Bold', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

/* Mobile styles */
@media (max-width: 768px) {
     header {
        padding: 15px 20px !important;
    }
    
    .hamburger {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        transition: all 0.3s ease;
        z-index: 1000;
        padding-top: 60px;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
}






/* Hero Section */
.hero {
    padding: 50px 20px;
    width: 80%;
    margin: 0 auto;
}


.category-navbar {
  width: 450px;
  max-width: 90%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease-out;
}

.category-btn {
  background: transparent;
  color: white;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  border-radius: 6px;
  margin: 0 auto;
  line-height: 1.3;
}

.category-btn.active {
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Modern underline animation */
.category-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.category-btn:hover::after,
.category-btn.active::after {
  width: 60%;
}

.divider {
  width: 1.5px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  transition: opacity 0.2s ease;
}

.category-navbar:hover .divider {
  opacity: 0.8;
}	



.hero h1 {
    font-family: 'ClashDisplay-Bold', sans-serif;
    font-weight: bold;
    font-size: 38px;
    color: white;
    word-spacing: 2px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

/* Input Box */
.input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.input-box {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    padding-right: 80px;
    outline: none;
}

.paste-icon {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.paste-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #DBD6FF;
    color: #342B83;
    border: 1px solid #342B83;
    border-radius: 8px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-icon {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}

.download-btn {
    background-color: #DBD6FF;
    color: #342B83;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hero {
        width: 100%;
    }
    .input-container {
        flex-direction: column;
		align-items: stretch;
    }
	.input-box {
		width: 100%;
	}
    .download-btn {
        width: 100%;
		justify-content: center;
    }
  
  .category-btn {
    font-size: 13px;
    padding: 8px 10px;
  }
  
  .divider {
    height: 20px;
  }
}







/* Features Section */
.features {
    text-align: center;
    padding: 10px 20px;
}

.features-title {
    font-family: 'ClashDisplay-Bold', sans-serif;
    word-spacing: 2px;
    font-size: 38px;
    font-weight: bold;
	margin-top: 40px;
	padding: 4px;
    background: linear-gradient(345deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-description {
    color: #666;
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}





/* Downloader Container */
.downloader-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
    margin: 2px auto;
    max-width: 1150px;
}

.downloader-box {
    background-color: #DBD6FF;
    border-radius: 15px;
    padding: 25px;
    width: calc(50% - 10px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.downloader-box h2 {
    color: #342B70;
    font-size: 18px;
    margin-bottom: 12px;
}

.downloader-box p {
    color: #342B70;
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.downloader-box img {
    max-width: 100%;
    border-radius: 10px;
    margin: 0 auto;
}

/* Feature Box */
.feature-box {
    display: flex;
    background: #FAE8F2;
    border-radius: 20px;
    padding: 40px;
    margin: 30px auto;
    max-width: 1110px;
    box-shadow:;
}

.feature-content {
    flex: 1;
    padding-right: 30px;
}

.feature-content h3 {
    color: #782357;
    font-size: 24px;
    margin-bottom: 5px;
	text-align: left;
}

.feature-content p {
    color: #782357;
    font-size: 16px;
    line-height: 1.6;
	text-align: left;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-visual img {
    max-width: 100%;
    border-radius: ;
    box-shadow: ;
}

/* Card Container */
.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
    margin: 2px auto;
    max-width: 1150px;
}

.feature-card {
    background: #FAD1C8;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.feature-card h2 {
    color: #873523;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #873523;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-image img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .downloader-box,
    .feature-card {
        width: 100%;
    }
    
    .feature-box {
        flex-direction: column;
        padding: 25px;
		width: calc(100% - 40px);
    }
    
    .feature-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .card-container {
        grid-template-columns: 1fr;
    }
	
	.feature-content h3 {
	text-align: center;
	}
	
	.feature-content p {
	text-align: center;
	}
}

@media (max-width: 480px) {
    .downloader-box,
    .feature-box,
    .feature-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .feature-content p,
    .feature-card p {
        font-size: 14px;
    }
	
	.feature-content h3 {
	text-align: center;
	}
	
	.feature-content p {
	text-align: center;
	}
}
















/* Features 1 Section */
.features1 {
    text-align: center;
    padding: 50px 20px;
}

.features1-title {
    font-family: 'ClashDisplay-Bold', sans-serif;
    word-spacing: 3px;
    font-size: 38px;
    font-weight: bold;
    background: linear-gradient(345deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features1-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Container 1 */
.container1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 178px;
    margin: 0 auto;
    position: relative;
    height: 500px;
}

.card {
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.card:hover::before {
    top: 0;
    right: 0;
}

.yellow1 { background-color: #DBD6FF; }
.gray1 { background-color: #FAD1C8; }
.blue1 { background-color: #BFF5C0; }

.container1 h2 {
    margin-bottom: 5px;
    font-size: 18px;
	text-align: left;
}

.container1 p {
    font-size: 14px;
    margin-bottom: 15px;
	text-align: left;
}

.container1 img {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .container1 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 50px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .container1 {
        grid-template-columns: 1fr;
        padding: 0 15px;
        height: auto;
    }
}

/* Download Section */
.download-section {
    text-align: center;
    margin-top: 0px;
}

.go-to-download {
    background-color: #ff795b;
    color: white;
    font-size: 16px;
    padding: 10px 500px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
}

.go-to-download:hover {
    background-color: #e65c00;
}

@media (max-width: 768px) {
    .go-to-download {
        width: 88%;
        font-size: 14px;
        padding: 12px 0;
    }
}

/* Description Panel */
.container-2 {
    width: 80%;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: justify;
}

.container-2 h1 {
	font-family: 'ClashDisplay-Bold', sans-serif;
	word-spacing: 2px;
	margin-bottom: 5px;
    font-size: 32px;
    text-align: center;
    color: #2c3e50;
    background: linear-gradient(345deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-2 p, 
.container-2 ul, 
.container-2 ol, 
.container-2 li {
    color: #555;
    font-size: 15px;
}

.container-2 h2 {
	font-size: 19px;
	margin-top: 15px;
	margin-bottom: 3px;
}


.container-2 ul, 
.container-2 ol {
    padding-left: 20px;
}

.container-2 li {
    margin-bottom: 10px;
}

.container-3 {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.container-3 p {
    color: #2c3e50;
    font-size: 15px;
	text-align: left;
	padding: 4px;
}

.note {
    color: #c0392b;
    font-weight: bold;
    margin-top: 20px;
}

.download-text {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #0044cc;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container-2 {
        width: 90%;
        padding: 15px;
    }
    .container-2 h1 {
        font-size: 26px;
    }
    .container-2 p,
    .container-2 ul,
    .container-2 ol,
    .container-2 li,
    .container-3 p {
        font-size: 14px;
    }
}





/* FAQS Section */

.faq-section {
  max-width: 1150px;
  margin: 20px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff; /* Pure white background */
}

.faq-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #333;
  font-weight: 600;
}

.faq-container {
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05); /* Reduced shadow transparency */
  background-color: #ffffff; /* White background for container */
  border: 1px solid #f0f0f0; /* Light border for definition */
}

.faq-item {
  border-bottom: 1px solid #f0f0f0; /* Lighter border color */
  background-color: #ffffff; /* White background for items */
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff; /* White background */
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #fafafa; /* Very subtle hover effect */
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.toggle-icon {
  font-size: 20px;
  font-weight: bold;
  color: #555;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #ffffff; /* White background */
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 20px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.faq-answer ol, .faq-answer ul {
  margin: 0 0 15px 0;
  padding-left: 20px;
  text-align: left;
}

.faq-answer li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.faq-answer strong {
  color: #333;
  font-weight: 600;
  text-align: left;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 0 30px;
  }
  
  .faq-container {
  border-radius: 15px;
  }
  
  .faq-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 16px;
	text-align: left;
  }
  
  .faq-answer {
    font-size: 14px;
    padding: 0 15px;
  }
  
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}



/* ====== FAQ ANIMATION UPGRADES ====== */
.faq-container {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-question {
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.faq-question:hover {
  background-color: #f8f8f8;
  transform: translateX(5px);
}

.toggle-icon {
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.faq-item.active .toggle-icon {
  transform: rotate(135deg);
  color: #3366ff;
}

.faq-answer {
  will-change: max-height;
  transition: 
    max-height 0.6s cubic-bezier(0.33, 1, 0.68, 1),
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .faq-question:hover {
    transform: none;
  }
  
  .faq-answer {
    transition: 
      max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1),
      padding 0.3s ease;
  }
}







/* Instagram Downloader */
.instagram-downloader {
    padding: 30px 0;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
	margin-top: 20px;
}

.instagram-downloader h1 {
	font-family: 'ClashDisplay-Bold', sans-serif;
    font-size: 28px;
    background: linear-gradient(345deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.instagram-downloader .intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .instagram-downloader {
        padding: 20px 25px;
        margin-top: 15px;
    }
}    

















/* Footer */
.site-footer {
  background: linear-gradient(to right, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 40px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
  background: linear-gradient(345deg, #feda75, #fa7e1e, #d62976);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  color: #aaa;
  font-size: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  background: linear-gradient(to right, #feda75, #fa7e1e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none; /* Removes underline */
}

.social-links a:hover {
  background: linear-gradient(to right, #feda75, #fa7e1e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
  color: #aaa;
  font-size: 14px;
}

.site-footer {
  /* आपका मौजूदा CSS */
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px; /* बॉर्डर की मोटाई */
  background: linear-gradient(to right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  border-radius: 0 0 4px 4px;
}

@media (max-width: 768px) {
  .footer-nav {
    gap: 15px;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .footer-logo {
    font-size: 24px;
  }
}

