
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Satisfy&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6, 
{
	 font-family: "Satisfy", cursive;
}
p 
{
	 font-family: "Open Sans", sans-serif;
}
img
{
	width: 100%;
	display: block;
}


.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 1s ease;
}

.header_container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Satisfy', cursive;
  font-size:20px;
  color: #be073c;
}

.nav_links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.nav_links a {
  text-decoration: none;
  color: #34495e;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 500;
}

.nav_links a:hover {
  color: #be073c;
}

.book_btn {
  background: #be073c;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}

.book_btn:hover {
  background: #930526;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header_container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav_links {
    justify-content: center;
  }

  .book_btn {
    margin-top: 10px;
  }
}

/*slider*/

.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  font-family: 'Satisfy', cursive;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.slide_text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #be073c;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 70%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.slide_text h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.slide_text p {
  margin: 0;
  font-size: 18px;
  color: #34495e;
}

/* Slider Controls */
.slider_controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 3;
}

.slider_controls button {
  background: rgba(190, 7, 60, 0.7);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider_controls button:hover {
  background: #be073c;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 300px;
  }
  .slide_text {
    max-width: 90%;
    left: 15px;
    bottom: 20px;
    padding: 15px 20px;
  }
  .slide_text h2 {
    font-size: 24px;
  }
  .slide_text p {
    font-size: 14px;
  }
}

/* intro*/
.intro
{
	padding:5%;
	background: linear-gradient(to right, #faf5f9, #e7f2f4);
	background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
}
.intro_container
{
	max-width: 1920px;
	display:flex;
	gap:32px;
	margin: auto;
}
.intro_1
{
	width:60%;
	
}

.intro_2
{
	width:40%;
}

.intro_2 img 
{
  border-radius: 48px;
}
.intro_1 h1 
{
	color:#be073c;
	font-family: "Satisfy", cursive;
}
.intro_1 span  
{
	color: #04c3cb;
}
.intro_1 p 
{
	padding:1%;
	font-size:14px;
	line-height:1.9;
	text-align: justify;
	color: #717d7e ;
}

 .slider {
      position: relative;
      width: 100%;
      height:50vh;
      overflow: hidden;
    }

    .slider::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5); /* overlay */
      z-index: 2;
    }

    .slides {
      position: absolute;
      width: 100%;
      height: 100%;
      animation: slideShow 18s infinite;
      z-index: 1;
      background-size: cover;
      background-position: center;
      filter: blur(1px);
      transition: background-image 1s ease-in-out;
    }

    @keyframes slideShow {
      0%, 33% {
        background-image: url('https://callgirlservicesindelhi.in/assets/img/slider/sliding-banner-3.jpg');
      }
      34%, 66% {
        background-image: url('https://callgirlservicesindelhi.in/assets/img/slider/sliding-banner-3.jpg');
      }
      67%, 100% {
        background-image: url('https://callgirlservicesindelhi.in/assets/img/slider/sliding-banner-3.jpg');
      }
    }

    .content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .content h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }

    .content p {
      font-size: 1.3rem;
      max-width: 600px;
      margin: 0 auto;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    }

    @media (max-width: 768px) {
      .content h1 {
        font-size: 2rem;
      }
      .content p {
        font-size: 1rem;
      }
    }
/*about*/

.about 
{
  padding: 5%;
}
.about_conatainer
{
  max-width: 1920px;
  margin:auto;
  display: flex;
  gap:32px;
  flex-wrap: wrap;
}

.about_1 
{
  width:100%;
  text-align: center;
  padding-bottom: 5%;
 
}


.about_1 h1 
{
  padding:1%;
  color:#be073c;
  font-family: "Satisfy", cursive;
}
.about_1 p 
{
  padding:1%;
  font-size:14px;
  line-height:1.9;
  color: #717d7e;
}

.about_2 
{
  width:48%;
  text-align: center;
  padding: 3%;
  border-top-left-radius:48px;
   border-bottom-right-radius:48px;
  background: linear-gradient(to right, #faf5f9, #e7f2f4);
  background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
}

.about_2 h2 
{
   font-family: "Satisfy", cursive;
  color: #1b2631;
}

.about_2 p 
{
   padding:1%;
  font-size:14px;
  line-height:1.9;
  color: #717d7e;
}


/*custom_boxes_section*/

 .custom_boxes_section {
  padding: 5%;
  background-color: #fdfefe;
  text-align: center;
}

.custom_boxes_intro {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.custom_boxes_intro h2 span 
{
  color:#04c3cb;
}

.custom_boxes_intro h2 {
  font-size: 32px;
  color: #be073c;
  font-family: "Satisfy", cursive;
}

.custom_boxes_intro p {
  font-size: 16px;
  color: #717d7e;
  margin-top: 10px;
}

.custom_boxes_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.custom_box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
 
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease;
}

.custom_box:hover {
  transform: translateY(-5px);
}

.custom_box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.custom_box h3 {
  margin-top: 16px;
  font-size: 20px;
  color: #1b2631;
  font-family: "Satisfy", cursive;
}

.custom_box p {
  font-size: 14px;
  color: #717d7e;
  margin: 12px 0;
}

.read_more_btn {
  display: inline-block;
  margin-top:9px;
  margin-bottom:9px;
  padding: 8px 16px;
  background-color: #be073c;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: background 0.3s;
}

.read_more_btn:hover {
  background-color: #a00532;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .custom_box {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (min-width: 1024px) {
  .custom_box {
    flex: 1 1 calc(33.33% - 40px);
  }
}




/*benifits*/

.benifits
{
	padding:5%;
	background-image: url(https://webtemplates.s3.us-east-1.amazonaws.com/soulmeet/site/assets/images/hearts-bg.jpg);
}
.benifits_container
{
	max-width: 1920px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	text-align:left;
	gap: 16px;
}

.benifits_1 
{
	width: 100%;
	padding: 2%;
	text-align:center;
}

.benifits_2
{
	width:49%;
	padding:5%;
	border-top-left-radius:55px;
	border-bottom-right-radius:55px;
	background-color:#dee9f5 ;
}

.benifits_3 
{
	width:49%;
	padding:5%;
	border-top-left-radius:55px;
	border-bottom-right-radius:55px;
	background-color:#e8f8f5 ;
}


.container
{
	display: flex;
	padding-left:10%;
	padding-right:10%;
	gap:32px;
	text-align: lefts;
}

.benifits_4
{
	width:49%;
	padding:5%;
	background-color: #f5eef8;
	border-top-left-radius:55px;
	border-bottom-right-radius:55px;
	
}

.benifits_5
{
	width:49%;
	padding:5%;
	background-color: #fef5e7 ;
	border-top-left-radius:55px;
	border-bottom-right-radius:55px;
	
}

.benifits_2 h2 ,.benifits_3 h2
{
	padding:3%;

}

.benifits_1 h1 
{
	color: #be073c;
	font-size:30px;
	font-family: "Satisfy", cursive;
}

.benifits_1 span 
{
	color:#04c3cb;
}

.benifits_2 h2 ,.benifits_3 h2 ,.benifits_4 h2,.benifits_5 h2
{
	color:#1b2631;
   font-size:20px;
	font-family: "Satisfy", cursive;
}

.benifits_2  p ,.benifits_3 p ,.benifits_4 p ,.benifits_5 p 
{
	font-size:16px;
	line-height: 1.5;
	color: #717d7e ;
}

/*customized*/

.customized {
      padding: 5%;
      background: linear-gradient(to right, #faf5f9, #e7f2f4);
	background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
     
    }

    .customized_container {
      display: flex;
      max-width: 1920px;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .customized_1 {
      width: 100%;
      text-align: left;
      color: #DE3163;
      font-size: 28px;
      margin-bottom: 24px;
    }

    .customized_box {
      width: 23.5%;
      border: 1px solid #DE3163;
      padding: 16px;
      box-sizing: border-box;
      background-color: #ffffff; /* White card */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .customized_box:hover {
      transform: translateY(-5px);
    }

    .customized_1 h3
    {
    	color: #be073c;
    	font-family: "Satisfy", cursive;
    }

    .customized_1 span 
    {
    	color:#04c3cb;
    }

    .customized_box h4 {
      text-align: center;
      margin-top: 2%;
      margin-bottom: 2%;
      color: #04c3cb;
      font-family: "Satisfy", cursive;
    }

    .customized_box p {
      text-align: center;
      font-size: 13px;
      line-height: 2;
      color: #333333; /* Dark text for light background */
    }

    
    /* Responsive */
    @media screen and (max-width: 768px) {
      .customized_box {
        width: 100%;
      }
    }

/*why*/

.why 
{
	padding: 2%;
	background: linear-gradient(to right, #faf5f9, #e7f2f4);
	background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
}

.why_container
{
	margin: auto;
	display: flex;
	gap: 16px;
	max-width: 1920px;
}

.why_1
{
	width: 100%;
	text-align:left;
	margin-top:3%;
	margin-bottom:3%;
}

.content_box
{
	display: flex;
}

.why_content
{
	width:50%;
	padding:2%;
	margin-top: 3%;
	margin-bottom: 3%;
	border-right: 1px solid #1b2631;
	
}

.why_2
{
	width:50%;
}

.why_1 span
{
	color:#04c3cb;
}
.why_1 h1 
{
	color:#be073c;
	padding: 1%;
	font-family: "Satisfy", cursive;
}
.why_1 p 
{
	color: #717d7e ;
	font-size:15px;
}

.why_content h2 
{
	color:#930526;
	padding:2%;
	font-family: "Satisfy", cursive;
}
.why_content p 
{
	text-align: justify;
  font-size:15px;
	color: #717d7e;

}

.why_2 img 
{
	border-top-left-radius: 48px;
	border-bottom-right-radius: 48px;
}




/*packages*/
.Packages
{
	padding:5%;
	background: linear-gradient(to right, #faf5f9, #e7f2f4);
	background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
}
.Packages_container
{
	max-width: 1920px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	text-align:center;
}

.Packages_1 
{
	width: 100%;
	text-align:center;
	padding: 2%;
}

.Packages_2 
{
	width:32%;
	padding:2%;
	border: 1px solid #be073c;
}

.Packages_1 span 
{
	color:#04c3cb;
	font-family: "Satisfy", cursive;
}
.Packages_1 h1 
{
	font-family: "Satisfy", cursive;
	color:#be073c;
}

.Packages_1 p 

{
	font-size:13px;
	color: #717d7e;
}
.Packages_2 span 
{
	font-size:17px;
	color: #17202a;
	font-weight: bold;
	font-family: "Satisfy", cursive;
}


.Packages_2 p 
{
	font-size:14px;
	padding-top:6%;
	padding-bottom:6%;
  padding-left:3%;
  padding-right: 3%;
  color:#34495e;
  text-align: left;

}

.Packages_2 h1 
{
	color:#930526;
	font-family: "Satisfy", cursive;
	font-size:25px;
}


.Packages_2 i 
{
	color:#be073c ;
	size: 14px;
}






/*gallery-header*/


.gallery-header {
  text-align: center;
  padding: 60px 20px 30px;
  max-width: 900px;
  margin: auto;
}

.gallery-header h2 {
  font-family: "Satisfy", cursive;
  font-size:30px;
  color: #04c3cb; 
  margin-bottom: 15px;
}

.gallery-header span
{
  color:#be073c ;
}

.gallery-header p {
  font-size:15px;
  color:#34495e ;
  line-height: 1.7;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  z-index: 2;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 60px 20px;
   background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
}

.cta h3 {
   font-family: "Satisfy", cursive;
  font-size: 2rem;
  color: #be073c;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  text-decoration: none;
  color: #0f0f0f;
  background: #04c3cb;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #b99625;
}

/* Responsive text alignment */
@media (max-width: 600px) {
  .gallery-header h2 {
    font-size: 2rem;
  }

  .cta h3 {
    font-size: 1.5rem;
  }
}


/*feature*/

.feature
{
  padding: 5%;
  background: linear-gradient(to right, #faf5f9,#e7f2f4);
  background: linear-gradient(to bottom,  #faf5f9, #e7f2f4);
}

.feature_conatainer
{
  margin: auto;
  display: flex;
  max-width: 1920px;
  gap: 16px;
  flex-wrap: wrap;
 }

.feature_1
{
  width: 100%;
  text-align: center;
   padding: 1%;

}

.feature_box
{
  width: 100%;
  border: 1px solid darkred;
  padding: 2%;
  border-radius: 8px;
  text-align:left;
}


.feature_1 h1 
{
  
   color:#04c3cb;
   font-family: "Satisfy", cursive;
}
.feature_1 span 
{
color:#be073c;
}
.feature_1 p 
{
  font-size:14px;
  color: #717d7e;
}

.feature_box h2 
{
  color: #930526;
   font-family: "Satisfy", cursive;
}

.feature_box p 
{
  font-size:14px;
  color: #717d7e;
  padding:1%;
  line-height:1.9;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*ratelist*/

.ratelist
{
  padding:2%;

}

.rate_container
{
  max-width: 1920px;
  margin: auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rate_box 
{
  text-align:center;
  width: 100%;
  padding:5%;
  font-family: 'Satisfy', cursive;
   color: #be073c;
   font-size:14px;
}

.rate_box span 
{
 
color: #04c3cb;
}

.rate_box p 
{
  padding:1%;
  font-size:14px;
  color: #717d7e;
  line-height: 2;
}

.rate_1
{
  text-align:left;
  width: 100%;
  padding: 3%;
   background: linear-gradient(to bottom, #faf5f9, #e7f2f4);

}
.rate_1 h1 
{
   font-family: 'Satisfy', cursive;
  color:#930526;
   font-size:25px;
}



.rate_1 p 
{
  padding:1%;
  font-size:14px;
  color: #717d7e;
  line-height: 2;

}

.rate-table {
  width: 90%;
  max-width: 700px;
  margin: 30px auto;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.rate-table thead {
  background: linear-gradient(90deg, #be073c, #e6005c);
  color: #fff;
}

.rate-table th, 
.rate-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
}

.rate-table tbody tr:hover {
  background-color: #fce4ec;
  cursor: default;
}

.rate-table tbody tr:last-child td {
  border-bottom: none;
}

.note {
  width: 90%;
  max-width: 700px;
  margin: 10px auto 40px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.note p {
  margin: 6px 0;





/*footer*/

 
.footer {
  background: linear-gradient(to bottom, #faf5f9, #e7f2f4);
  padding: 40px 20px 20px;
  font-family: 'Satisfy', cursive;
  color: #930526;
  animation: fadeInUp 1s ease;
}

.footer_container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  gap: 20px;
}

.footer_col {
  flex: 1 1 250px;
  text-align: center;
}

.footer_col h2 {
  font-size: 24px;
  color: #be073c;
  margin-bottom: 10px;
}

.footer_col h3 {
  font-size: 20px;
  color: #04c3cb;
  margin-bottom: 10px;
}

.footer_col p {
  color: #717d7e;
  font-size: 14px;
  text-align:center;
}

.footer_col ul {
  list-style: none;
  padding: 0;
}

.footer_col ul li {
  margin: 8px 0;
}

.footer_col ul li a {
  text-decoration: none;
  color: #34495e;
  font-size: 14px;
  transition: color 0.3s;
}

.footer_col ul li a:hover {
  color: #be073c;
}

.social_icons a {
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
  color: #930526;
  transition: 0.3s;
}

.social_icons a:hover {
  color: #04c3cb;
}

.footer_bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #717d7e;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .footer_container {
    flex-direction: column;
    text-align: center;
  }
}

@media all and (max-width : 480px) 

{
	.intro_container{flex-wrap: wrap;flex-direction: column-reverse;}
  .intro_1 , .intro_2{width: 100%}

.benifits_container{flex-wrap: wrap;}
.benifits_1{width:50%}
.benifits_2,{width:50%}
.benifits_3,{width:50%}
.container{flex-wrap: wrap;}
.benifits_4,{width: 50%}
.benifits_5{width:100%}

.why_container{flex-wrap: wrap;}
.why_1{width: 100%}
.why_2{width: 100%}

.Packages_container{width: 100%}
.Packages_1,.Packages_2{width: 100%}

}