/*!
Theme Name: adzilla
Theme URI: https://adzillamedia.in
Author: Underscores.me
Author URI: http://vimalmichael.com/
Description: Description
Version: 1.1.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: adzilla
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

.banner-img {
	width: 100%;
	max-width: 800px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: fadeIn 2s ease-out;
  }
  
  body {
	color: #ffffff;
	min-height: 100vh;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
  }
  
  /* .hero-section {
	position: relative;
	background: url('attached_assets/website banner.webp') no-repeat center center;
	background-size: cover;
	min-height: 100vh;
  }
  
  @media (max-width: 768px) {
	.hero-section {
	  background: url('attached_assets/mobile-banner.webp') no-repeat center center;
	  background-size: cover;
	}
  } */
  .hero-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
  }
  
  .hero-banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
  }
  
  .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
  }
  
  .navbar {
	background: rgba(0, 0, 0, 0);
	backdrop-filter: blur(10px);
	padding: 15px 0;
	transition: all 0.3s ease;
  }
  
  .navbar-brand {
	padding: 0;
  }
  
  .header-logo {
	height: 50px;
	width: auto;
  }
  .desk-vh-100 {
	min-height: 100vh;
  }
  .hero-content {
	padding-left: 2rem;
	margin-left: -2rem;
  }
  
  .hero-content {
	position: relative;
	z-index: 2;
	padding: 2rem;
  }
  
  .hero-title {
	font-size: 5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1.5rem;
  }

  .hero-title span {
	font-weight: normal;
	font-size: 2.8rem;
  }
  

  .hero-subtitle {
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 2rem;
	opacity: 0.9;
  }
  
  .btn-dark {
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
  }
  
  .btn-dark:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .hero {
	width: 100%;
	max-width: 100%;
	margin: 0;
  }
  
  @keyframes gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
  }
  
  .logo {
	width: 180px;
	margin: 0 auto 3rem;
	display: block;
	animation: logoReveal 2s ease-out, glow 3s ease-in-out infinite alternate;
  }
  
  @keyframes logoReveal {
	from {
	  opacity: 0;
	  transform: translateY(-30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes glow {
	from { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6)); }
	to { filter: drop-shadow(0 0 15px rgba(109, 213, 237, 0.9)); }
  }
  
  .display-4 {
	font-weight: 700;
	animation: textReveal 1.5s ease-out;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  @keyframes textReveal {
	0% {
	  opacity: 0;
	  transform: translateY(20px);
	}
	50% {
	  opacity: 0.5;
	  transform: translateY(-10px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  .countdown {
	font-size: 2rem;
	font-weight: 600;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	animation: fadeIn 2s ease-out;
  }
  
  .countdown span {
	display: inline-block;
	animation: numberFlip 0.6s ease-out;
  }
  
  @keyframes numberFlip {
	0% { transform: rotateX(90deg); }
	100% { transform: rotateX(0deg); }
  }
  
  .particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
  }
  
  .btn-primary {
	background: linear-gradient(45deg, #1E1212, #EC7661);
	border: none;
	padding: 0.75rem 1.5rem;
	transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(33, 147, 176, 0.4);
  }
  
  .form-control {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
  }
  
  .form-control::placeholder {
	color: rgba(255, 255, 255, 0.6);
  }
  
  @keyframes float {
	0% { transform: translateY(0) translateX(0); opacity: 0; }
	50% { opacity: 0.8; }
	100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
  }
  
  @keyframes floatUp {
	0% { transform: translateY(0) rotate(0deg); opacity: 0; }
	10% { opacity: 0.3; }
	90% { opacity: 0.3; }
	100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
  }
  
  @keyframes fadeOut {
	to { opacity: 0; }
  }
  
  #services-particles,
  #social-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
  }
  
  .services {
	position: relative;
	background: linear-gradient(to bottom, rgba(148, 76, 64, 0.9), rgba(30, 18, 18, 0.9));
	padding: 80px 0;
	position: relative;
	z-index: 1;
  }

  .aboutus {
	position: relative;
	background: linear-gradient(to bottom,rgba(30, 18, 18, 0.9), rgba(148, 76, 64, 0.9) );
	padding: 80px 0;
	position: relative;
	z-index: 1;
  }
  
  .services .container,
  .social-proof .container,
  .aboutus .container {
	display: block;
	text-align: center;
  }

  .aboutuscontent p, 
  .aboutuscontent h3,
  .aboutuscontent ul {
	color: #fff;
	font-size: 16px;
	text-align: justify;
  }
  
  .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .section-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	margin-bottom: 3rem;
	font-weight: 300;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }
  
  .service-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .service-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(45deg, #E96A64, #F2B138);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
	transform: scale(1.2);
	background: linear-gradient(45deg, #F2B138, #E96A64);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  }
  
  .service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #ffffff;
  }
  
  .service-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.6;
  }
  
  /* Scroll Animations */
  .fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in.visible {
	opacity: 1;
	transform: translateY(0);
  }
  
  /* Enhanced Hover Effects */
  .btn-primary, .social-link, .service-card {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 20px rgba(247, 177, 66, 0.3);
  }
  
  .social-link:hover {
	transform: translateY(-5px) scale(1.1);
	filter: drop-shadow(0 0 15px rgba(236, 118, 97, 0.7));
  }

  .general-page {
	position: relative;
	background: linear-gradient(to bottom, rgba(148, 76, 64, 0.9), rgba(30, 18, 18, 0.9));
	padding: 80px 0;
	position: relative;
	z-index: 1;
  }
  .general-page .container {
	display: block;
	text-align: center;
  }
  
  .general-page-content {
	color: #fff;
	text-align: justify;
	font-size: 16px;
  }
  
  @media (max-width: 768px) {

	.hero-content {
		margin-top: 20px;
		padding: 1.5rem;
	  }
	
	  .hero-title {
		font-size: 2.8rem;
	  }
  
	  .hero-title span {
		  font-size: 2.3rem;
	  }
	
	  .hero-subtitle {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
	  }
	  .mob-vh-70{
		min-height: 70vh !important;
	  }
	  .desk-vh-100 {
		min-height:auto;
	  }
	  button.btn {
		font-size: 0.8rem;
	}	
	  .logo-container {
		position: relative;
		text-align: center;
		padding: 1rem;
		background: rgba(0, 0, 0, 0.5);
	  }
	
	  .header-logo {
		height: 40px;
	  }
	
	.display-4 {
	  font-size: 1.8rem;
	}
	
	.fs-4 {
	  font-size: 1rem !important;
	}
	
	.countdown {
	  font-size: 1.5rem;
	}
	
	.logo {
	  width: 140px;
	}
  
	.section-title {
	  font-size: 2rem;
	}
  
	.service-card {
	  padding: 1.5rem;
	}
  }

  @media (max-width: 400px) {
	.hero-title span {
        font-size: 1.4rem;
    }
	.hero-title {
        font-size: 2.3rem;
    }
	.hero-subtitle {
        font-size: .9rem;
        margin-bottom: 1.5rem;
    }
  }
  
  .social-proof {
	background: linear-gradient(to top, rgba(30, 18, 18, 0.9), rgba(148, 76, 64, 0.9));
	padding: 80px 0;
	position: relative;
	overflow: hidden;
  }
  
  .social-icons {
	display: flex;
	justify-content: center;
	gap: 2rem;
  }
  
  .social-link {
	font-size: 2.5rem;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
  }
  
  .social-link:hover {
	color: #F7B142;
	transform: translateY(-5px);
	filter: drop-shadow(0 0 10px rgba(109, 213, 237, 0.5));
  }
  
  .email-button {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2rem;
	background: linear-gradient(45deg, #1E1212, #EC7661);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s ease;
	font-size: 1.1rem;
  }
  
  .email-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(33, 147, 176, 0.4);
	color: white;
	background: linear-gradient(45deg, #EC7661, #1E1212);
  }
  
  .floating-icons {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
  }
  
  /* Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
  }
  
  .modal-content {
	position: relative;
	background: rgba(26, 28, 44, 0.95);
	margin: 15% auto;
	padding: 30px;
	width: 90%;
	max-width: 500px;
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
  }
  
  .close {
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 28px;
	cursor: pointer;
	color: #000;
  }
  
  .form-group {
	margin-bottom: 20px;
  }
  
  .form-control {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 12px;
	border-radius: 8px;
	width: 100%;
	color: #fff;
  }
  
  .error-message {
	color: #ff4444;
	font-size: 0.8rem;
	margin-top: 5px;
	display: block;
  }
  
  .modal h2 {
	margin-bottom: 20px;
	text-align: center;
	color: #000;
  }
  