@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');
/* Option 2: Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
  
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}  
    


	   :root {
     --text-color:#000;
	 --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Header and Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
	background-color:#000;
   /* background: var(--nav-bg);
    padding: 1rem 2rem;
   */
   padding-top: 80px;
   padding-bottom: 0px;
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border-bottom: 1px solid var(--border-color);
    /*box-shadow: 0 4px 30px var(--shadow-color);*/
    transition: var(--transition-medium);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    /*gap: 0rem;*/
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
	color:#fff;
    /*color: var(--text-color);
     font-weight: 500;
    
    */
      padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
     color:red;
}

/* Icons */
.icon {
    transition: var(--transition-medium);
    vertical-align: middle;
}

.chevron-icon {
    transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.hidden {
    display: none;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    padding: 0.6rem;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(15deg);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
	 padding: 0.6rem;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: all var(--transition-medium);
    border-radius: 10px;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 70%;
}

.hamburger span:last-child {
    top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-active .hamburger span:last-child {
    transform: rotate(-45deg);
    top: 9px;
}

/* Content Styling */
.content {
    margin-top: 70px;
    padding: 2rem;
}


.section {
    padding: 5rem 2rem;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}



/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
	

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        align-items: flex-start;
       /* background: var(--nav-bg);*/
	   background-color:#fff;
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
        width: 80%;
        /*height: calc(100vh - 70px);*/
        padding: 2rem;
        transition: right var(--transition-slow);
        /*box-shadow: -10px 0 30px var(--shadow-color);*/
        border-left: 1px solid var(--border-color);
    }

    .nav-active .nav-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
    }
    .nav-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .theme-toggle {
        align-self: flex-start;
    }

    .chevron-icon {
        position: absolute;
        right: 1rem;
    }

    .has-dropdown.active .chevron-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        width: 100%;
    }
    
    .xyz {
	display:none;
	}
    .content {
        padding: 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
	.nav-brand a {
    padding-left:10px !important;
}
	
}
	

.nav-brand a {
padding-left:60px
}	
.xyz {
padding-right:60px;
}

/*---------about--section-start-----*/

.about {
    margin-top:135px;
    background-color: #a8005d;
    padding:80px 0px;
}

.studio-body h1 {
    color: #fff;
    font-size:48px;
    font-family: 'poppins-bold', sans-serif !important;
}
.studio-body p {
    color: #fff;
    font-size:17px;
    font-weight:400;
    margin:30px 0px;
    font-family: 'poppins-bold', sans-serif !important;
}

.studio-body a {
    background-color: #fff;
    padding:10px 40px;
    border-radius:2px;
    font-weight:700;
    color: #000;
    
}
.studio-body a:hover {
    color: #fff;
    background-color: rgb(237, 15, 105);
} 


.about-box {
    padding:0px;
}
.about-images img  {
width:100%;
height:520px;
border-radius:30px;
}

/*--------about-section-end------------*/

.philosophy {
    padding:50px;
}
.philosophy-body h1 {
    text-align: center;
    color: #a8005d;
    font-size:55px;
    font-family: 'poppins-bold', sans-serif !important;
}
.philosophy-body img {
    width:100%;
    height:500px;
    border-radius:10px;
    margin:15px 0px;
}
.philosophy-body p{
    width:85%;
    text-align: center;
    font-size:18px;
    font-weight:500;
    position: relative;
    left:8%;
    font-family: 'poppins-bold', sans-serif !important;
}

/*------------philosophy--section-end-----------*/
.franchise {
    padding: 70px 50px 50px 50px;
    background-color: #a8005d;
   
    
}

.franchise-containe h1 {
 font-size:50px;
    color: hsl(0, 0%, 100%);
}
.franchise-containe p {
    color: #fff !important;
    font-size:17px;
    font-weight:400;
    text-align:justify;
    margin:30px 0px;
}
.franchise-images img {
    width:100%;
    border-radius:20px;
}
.franchies {
    display: flex;
    justify-content:space-around;
    position:absolute;
    top: 70%;
    right:65%;
    background-color: #fff;
    width:50%;
   
    
}
.franchies-year h1 {
    font-size:50px;
    font-weight: bold;
    color: #a8005d;
}
.franchies-year p {
    color: #a8005d;
    font-size:18px;
    font-weight:500;
}


/*-------------franchies---section--end------*/
.franchise-cart {
    padding:50px;
}
.cart-contante h1 {
    text-align: center;
    color:#a8005d;
    font-size: 48px;
    font-family: 'poppins-bold', sans-serif !important;
    font-weight: bold;
}
.cart-contante h6 {
   
    background-color: #a8005d;
    color: #fff;
    width: 60%;
    font-size:17px;
    padding:10px;
    position: relative;
    left: 20%;
    margin:20px 0px;
}

.cart-contante p {
    color: #a8005d;
    width: 90%;
    font-size:17px;
    padding:10px;
    position: relative;
    left:5%;
    text-align: center;
    font-weight: 500;
    font-family: 'poppins-bold', sans-serif !important;
}

.grid-cart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-body img {
    width: 100%;
    object-fit: cover;
    height:300px;
    border-radius:20px 20px 0px 0px;
}

.grid-contante {
    padding: 40px;
    background-color: #a8005d;
    color: #fff;
    height:230px;
    text-align: justify;
}
.grid-contante  p {
    font-size:14px;
}

/*-----------franchise-cart------section-end-----*/

.franchiesee-carusel {
    margin-top:85px;
}



.franchisee-woner {
    padding: 30px;
   
}
.owner-heading h1 {
    text-align: center;
    font-size:40px;
    text-transform: uppercase;
    font-style: italic;
}

.owner-heading h5 {
    border-bottom:5px solid rgb(168, 0, 93);;
    width:55%;
    position: relative;
    left:22%;

}
.owner-heading p {
    text-align: center;
    font-size: 20px;
}


.frinchisee-contante-body {
    padding:30px;
}

.franchisee-contante h6 {
    text-align: end;
    font-size: 18px;
    font-weight:500;
    line-height:25px;
    color: #1d1b1b;
    font-family: 'poppins-bold', sans-serif !important;

}
.franchisee-contante p {
     text-align: end;
     font-size: 16px;
     margin-top:40px;
     font-family: 'poppins-bold', sans-serif !important;
}

.frinchisee-stap h2 {
    color: #a8005d;
     font-family: 'poppins-bold', sans-serif !important;
     font-weight:bold;
}
.frinchisee-stap  h1 {
    font-size:50px;
    font-family: 'poppins-bold', sans-serif !important;
    line-height:50px;
    font-weight:500;
    color: #000;
}


.frinchisee-contante-staptwo {
    padding:60px 30px;
    background-color: #a8005d;
    
} 
.frinchisee-staptwo h2 {
    color: #a8005d;
     font-family: 'poppins-bold', sans-serif !important;
     font-weight:bold;
    text-align: center;
    background-color: #fff;
    width:25%;
    position: relative;
    left:75%;
     
}

.frinchisee-staptwo h1 {
    font-size:60px;
    font-family: 'poppins-bold', sans-serif !important;
    font-weight:bold;
    line-height:50px;
    color: #fff;
     text-align: end;
     margin-top:20px;

}

.franchisee-contante-staptwo {
    margin-top:40px;
}
.franchisee-contante-staptwo h6 {
    text-align:start;
    font-size: 18px;
    font-weight:500;
    line-height:25px;
    color: #fff;
    font-family: 'poppins-bold', sans-serif !important;

}
.franchisee-contante-staptwo p {
     text-align:start;
     font-size: 16px;
     margin-top:40px;
     font-family: 'poppins-bold', sans-serif !important;
     color: #fff;
}


.frinchisee-contante-three {
    padding:100px 30px;
   
}

.franchisee-contante-three h6 {
    text-align: end;
    font-size: 18px;
    font-weight:500;
    color: #5a5252;
    font-family: 'poppins-bold', sans-serif !important;

}

.franchisee-contante-three a {
    background-color:#a8005d;
    padding:10px 80px;
    border-radius:2px;
    font-weight:700;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    left:55%;
    
}
.franchisee-contante-three a:hover {
    color: #fff;
    background-color: rgb(237, 15, 105);
} 

.frinchisee-stapthree h2 {
    color: #a8005d;
     font-family: 'poppins-bold', sans-serif !important;
     font-weight:bold;
}
.frinchisee-stapthree  h1 {
    font-size:50px;
    font-family: 'poppins-bold', sans-serif !important;
    font-weight:600;
    color: #000;
}



/*-------------franchies---section--end------*/
.franchise-cartfranch {
    padding:50px;
    background-color: #a8005d;
}
.cart-contantefranch h1 {
    text-align: center;
    color:#ffff;
    font-size: 48px;
    font-family: 'poppins-bold', sans-serif !important;
    font-weight: bold;
}
.cart-contantefranch h6 {
   text-align: center;
    background-color: #fff;
    color: #a8005d;
    width: 60%;
    font-size:17px;
    padding:10px;
    position: relative;
    left: 20%;
    margin:20px 0px;
}

.cart-contantefranch p {
    color: #fff;
    width: 90%;
    font-size:17px;
    padding:10px;
    position: relative;
    left:5%;
    text-align: center;
    font-weight: 500;
    font-family: 'poppins-bold', sans-serif !important;
}

.grid-cartfranch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top:20px;
}

.grid-bodyfranch img {
    width: 100%;
    object-fit: cover;
    height:300px;
    border-radius:20px 20px 0px 0px;
    
}

.grid-contantefranch {
    padding: 40px;
    background-color: #fff;
    color: #000;
    height:230px;
    text-align: justify;
}
.grid-contantefranch  p {
    font-size:14px;
}

/*-----------franchise-page------section-end-----*/

.advantage {
    margin-top:85px;
    background-color: #a8005d;
    padding:60px;
}
.advantage-header h1 {
  color: #fff;
  text-align: center;
  font-size:50px;
  font-weight:bold;
}
.advantage-header h4 {
    color: #fff;
    text-align: center;
}
.dvantage-header h4 span {
   background-color: rgb(110, 4, 83);
   padding:10px 20px;
}

.type-palan {
    background-color: #fff;
    padding:2px 0px 0px 0px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    border-radius:0px 120px 120px 0px;
    margin-bottom:15px;

}
.type-palan h3 {
    background-color: rgb(110, 4, 83);
    padding:5px 40px 5px 10px;
    color: #fff;
    font-size:25px;
    border-radius: 0px 20px 20px 0px;
    font-weight:600;

}
.type-palan ul {
    padding:0px 0px;
}

.type-palan ul li {
    margin-left:60px;
}

.palan-images  img {
    background-color: rgb(110, 4, 83);
    color: #fff;
    margin:25px;
    padding: 20px;
    border-radius:50px;
    width:100px;

}
.palan-chair img {
    width:90%;
    margin-top:20px;
}


.five-pillars {
    padding:60px;
}

.pillers-heading h1 {
    color: #6e0453;
    font-size: 100px;
    text-align: center;
     font-family: 'poppins-bold', sans-serif !important;
}
.pillers-heading h2 {
    text-align: center;
    color: #000;
    font-size: 45px;
    font-weight: 700;
     font-family: 'poppins-bold', sans-serif !important;
}
.pillers-heading p {
    text-align: center;
    color: #6e0453;
    font-size:18px;
    font-weight: 400;
}

.invest-return {
    padding:30px;
    text-align: center;
}
.invest-heading h1{
    font-size: 60px;
    color:#000;
    font-weight: bold;
     font-family: 'poppins-bold', sans-serif !important;
}
.invest-heading h2 {
     font-size: 45px;
    color:#000;
    font-weight:500;
     font-family: 'poppins-bold', sans-serif !important;
}

/*----------contact-page--start-----------*/
.contact {
    margin-top:80px;
    padding:30px 50px;
}
.contact-contante h1 {
font-size:100px;
font-weight: bold;
font-family: 'poppins-bold', sans-serif !important;
}
.contact-contante p {
    width:70%;
    font-size:18px;
    color: #000;
}

.contact-images img {
   padding-top:60px;
   width:100%;
}

.loction-map {
    padding:30px 50px;
}


/*------input-footer-section-start------*/
  

.input-footer {
width: 100%;
height:350px;
background-size: cover;
background-position: center;  
}
.input-images {
    margin-top:50px;
}

.input-images h4 {
    text-align: center;
    font-size:25px;
    color:rgb(244, 5, 137);
    font-weight:700;
    letter-spacing: 1px;
    font-family: 'poppins-bold', sans-serif !important;
}
.input-images p {
    text-align: center;
    font-size:16px;
    font-weight: 400;
    color:#524c4c;
     font-family: 'poppins-bold', sans-serif !important;
}
.input-images label {
    font-weight:500;
    color:#4a4545;
}
.input-images input {
  height:60px;
  border:2px solid #6e0453;
}
.input-images input:focus {
box-shadow:none;
outline:none;
border:2px solid #6e0453;
}
.input-images button {
    background-color:rgb(244, 5, 137) ;
    padding:8px 30px;
    border-radius:30px;
    font-size:18px;
    color: #fff;
    position: relative;
    left:40%;
    font-weight:500;
}
.input-images button:hover {
    color: #fff;
    background-color: #6e0453;
}


/*------footer-section-start----------*/

.footer {
   padding:50px 50px 0px 50px;
    background-color: #000;
}
.footer img {
    width:120px;
    
}
.footer ul li {
    color: #fff;
}
.footer ul li a {
    color: #8d8888;
    font-size:14px;
    letter-spacing: 1px;
    
}
.footer ul li a:hover {
    text-decoration:none;
}
.location-map h5 {
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size:18px;
     margin:30px 0px 15px 0px;

}
.footer-icon {
    margin-top:20px;
}
.footer-icon h5 {
     font-family: 'poppins-bold', sans-serif !important;
    color: #fff;
    font-weight:bold;
    font-size:18px;
    text-align: center;
    margin-left:80px;
}
.footer-icon a {
    color: #fff;
    font-weight: bold;
    background-color: #a8005d;
    padding:15px 50px;
    position: absolute;
    top:25%;
    left:35%;
    letter-spacing:1px;
}
.footer-icon a:hover{
    text-decoration: none;
} 
.social-media {
    margin-top:100px;
    display: flex;
    gap:40px;
   justify-content: center;
   margin-left:90px;
}
.social-media i {
    color: #fff;
    font-size:20px;
}
.gallery-body  {
  column-count: 3;
}

.gallery-heading h1 {
    font-family: 'poppins-bold', sans-serif !important;
text-align: center;
font-size:50px;
font-weight: bold;
color: #000;
margin-top:50px;
}
.gallery-heading p {
    text-align: center;
    color: #000;
    font-size:16px;
    font-weight:500;
}

.gallery-body {
    padding:60px;
	columns: 4;
	max-width: 100%;
	column-gap: 5px;
}
.gallery-body img {
	width: 100%;
	margin: 2px auto;
}



