:root {
  --primary-color: #000;
  --secondary-color: #666;
  --font-family: 'Poppins', sans-serif;

  /* Font sizes */
  --font-size-h1: 2rem; /* Fallback for 32px */
  --font-size-h1: clamp(1.75rem, 2.22vw, 2rem);

  --font-size-h2: 1.625rem; /* Fallback for 26px */
  --font-size-h2: clamp(1.5rem, 1.8vw, 1.625rem);

  --font-size-h3: 1.375rem; /* Fallback for 22px */
  --font-size-h3: clamp(1.25rem, 1.53vw, 1.375rem);

  --font-size-h4: 1.125rem; /* Fallback for 18px */
  --font-size-h4: clamp(1rem, 1.25vw, 1.125rem);

  --font-size-h5: 1rem; /* Fallback for 16px */
  --font-size-h5: clamp(0.9375rem, 1.1vw, 1rem);

  --font-size-h6: 0.875rem; /* Fallback for 14px */
  --font-size-h6: clamp(0.8125rem, 0.97vw, 0.875rem);

  --font-size-p: 0.9375rem; /* Fallback for 15px */
  --font-size-p: clamp(0.875rem, 1.04vw, 0.9375rem);

  --li-size: 0.875rem; /* Fallback for 14px */
  --li-size: clamp(0.8125rem, 0.97vw, 0.875rem);

  --title-size: clamp(1.6rem, 3.5vw, 2.5rem);
  --desc-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

body {
  font-family: var(--font-family);
  background-color: #fff;
  color: var(--primary-color);
  font-size: var(--font-size-p);
  line-height: 1.6;
}

body * {
  line-height: auto;
  box-sizing: border-box;
}

body section {
  overflow: hidden;
}

/* Headings */
h1 { font-size: var(--font-size-h1);
     font-weight: 600; }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }
p  { font-size: var(--font-size-p); color: var(--secondary-color); }

h2,h3,h4,h5,h6 {
  font-weight: 500;
  margin-bottom: 1.25rem; /* Fallback */
  margin-bottom: clamp(1rem, 1.39vw, 1.25rem);
}
.section-heading {
  font-weight: 600;
}




  /* Header Styling */
  header {
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }
.navbar-brand, .footer-logo{
    font-size: 42px;
    text-transform: uppercase;
    color:#fff;
}
.head-title{
    font-size: 32px;
    margin-bottom: 30px !important;
}
  .top-bar {
    background: #e0e0e0;
    font-size: 0.9rem; /* Fallback */
    font-size: clamp(0.875rem, 0.94vw, 0.9rem);
    text-align: center;
    padding: 0.3125rem 0; /* Fallback */
    padding: clamp(0.25rem, 0.35vw, 0.3125rem) 0;
  }

  .navbar {
    background: #000 !important;
    padding: 1.25rem 0; /* Fallback */
padding: clamp(1rem, 1.39vw, 1.25rem) 0;
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar-nav .nav-link {
    /* color: #000 !important; */
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.625rem 0.9375rem; /* Fallback */
    padding: clamp(0.5rem, 0.69vw, 0.625rem) clamp(0.875rem, 1.04vw, 0.9375rem);
  }

  .navbar-toggler {
    border: none;
  }

  .social-icons {
    display: flex;
    gap: 10px;
    margin-left: -10px;
  }

  .social-icons a {
    color: #000;
    font-size: 1.2rem; /* Fallback */
    font-size: clamp(1.125rem, 1.33vw, 1.2rem);
  }

  .navbar-container * {
    color: #fff !important;
  }
  .navbar-container .dropdown-menu * {
    color: #000 !important;
  }

  .hero-section-slider {
    height: 70vh;
    overflow: hidden;
    position: relative;
  }

  .hero-slider .item img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
  }
  .hero-content {
    z-index: 2;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4); /* optional: translucent black */
    width: 100%;
    height: 100%;
  }
  .hero-section .item {
    position: relative;
  }
  .hero-section .silder-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
  
  .hero-section img {
    height: 100vh;
    object-fit: cover;
  }
  

  
 
  
.site-footer p{
    color:#fff;
}
 .site-footer h5{
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
} 
.inner-bannersec{
  background-image: url('../../assets/images/bbb.jpeg');
  background-size: cover;
  background-position: center;
}
.page_title_area {
  min-height: 420px;
  padding: 80px 0px;
}
.page_title_area .overlay {
  background-image: linear-gradient(0deg, rgba(1, 0, 10, 0.8), rgba(26, 0, 0, 0.4));
}
.page_sub_title{font-size: 20px;}
.page_title {
	font-size: 36px;
    margin-bottom: 20px;
    font-weight: 500;
}
.has_overlay {
  z-index: 1;
  position: relative;
}
.has_overlay .overlay {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  position: absolute;
}
  /* services-section */
  .services-section .card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: none;
  }
  
  .services-section .card:hover {
    transform: translateY(-5px);
  }
  
  .services-section img {
    object-fit: cover;
    width: 100%;
  }
  

  /* clients logo */

  .logo-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}
  .logo-wrapper .logo-container {
    width: calc(20% - 25px);
    /* border: 1px solid #00000045; */
    border-radius: 0px;
    box-shadow: 0px 0px 7px 0px gray;
    padding: 5px;
}
/* .logo-wrapper .logo-container img {
  width: 100% !important;
  height: 100%;
} */

  .clients-section img {
    max-height: 50px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: all 0.3s ease-in-out;
  }
  
  .clients-section img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
  }

   

  .btn-view {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 0.625rem 1.25rem; /* Fallback */
    padding: clamp(0.5rem, 0.69vw, 0.625rem) clamp(1rem, 1.39vw, 1.25rem);
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
  }
  .btn-view:hover {
    background: #fff;
    color: #000;
  } 


    /* About Section */
    .about-section {
        text-align: center;
      }
  
      .about-section p {
        font-size: var(--desc-size);
        color: var(--secondary-color);
        max-width: 900px;
        margin: 0 auto 1.875rem; /* Fallback */
margin: 0 auto clamp(1.5rem, 2.08vw, 1.875rem);
      }
  
      .about-logos {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 1.25rem; /* Fallback */
margin-bottom: clamp(1rem, 1.39vw, 1.25rem);
      }
  
      .about-logos img {
        width: 100px;
        height: auto;
      }


/* our style */
.our-style-section .our-style-slider {
  width: 60%;
  margin: auto;
  height: auto;
}
.our-style-slider .slick-slide.slick-active {
  opacity: 0.5;
}
.our-style-slider .slick-slide {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.9);
}

.our-style-slider .slick-slide.slick-active.slick-center {
  transform: scale(1.8);
  opacity: 1;
  position: relative;
  z-index: 2;
}

.our-style-slider img {
  width: 100%;
  height: auto;
}
.our-style-slider .slick-list {
  overflow: unset;
}

/* Arrow Styles */
.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  background-color: black !important;
  color: white !important;
  z-index: 1;
  border: none;
  border-radius: 5px;
}

.slick-prev:before, .slick-next:before {
  font-size: 20px;
  color: white;
}

/* Center the arrows vertically */
.slick-prev {
  left: -50px;
}
.slick-next {
  right: -50px;
}




  /* testimonial-section */

  .testimonial-section {
    background-color: #f9f9f9;
  }
  .testimonial-text {
     max-width: 800px;
     margin: auto;
  }
  
  .testimonial-slider .testimonial-box {
    /* max-width: 800px; */
    margin: 0 auto;
    font-size: 18px;
    font-style: italic;
    color: #444;
    padding: 20px;
  }
  
  .testimonial-author {
    font-weight: bold;
    color: #000;
    margin-top: 15px;
  }


/* footer */

  .site-footer {
    background-color: #000;
    color: #fff;
  }
  
  .footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-contact, .footer-links {
    min-width: 200px;
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-links ul li a:hover {
    text-decoration: underline;
  }
  
  


      



   /* Footer Section */
   .footer {
    background-color: #f8f8f8;
    padding: 2.5rem 0 0; /* Fallback */
    padding: clamp(2rem, 2.78vw, 2.5rem) 0 0;
    text-align: center;
    color: var(--primary-color);
  }
  .footer > .container {
    padding: 0 0.75rem 2.5rem; /* Fallback */
    padding:  0 clamp(0.6875rem, 0.83vw, 0.75rem) clamp(2rem, 2.78vw, 2.5rem);
  }

  .footer .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .footer img {
    width: 150px;
    height: auto;
  }

  .footer p {
    margin: 0;
    font-size: 0.9rem; /* Fallback */
     font-size: clamp(0.875rem, 1vw, 0.9rem);
    color: var(--secondary-color);
  }

  .footer .contact-info {
    text-align: left;
  }
.img-responsive{
    max-width:100%;
}
.prt table{border-color:#ececec;border-spacing:0;margin-bottom:1em;width:100%}
.prt td,.prt th{border-bottom:1px solid #ececec;font-size:.9em;line-height:1.3;padding:.5em;text-align:left}
.prt td{color:#666}
.prt td:first-child,th:first-child{padding-left:0}
.prt td:last-child,th:last-child{padding-right:0}
.prt .uppercase{text-transform:uppercase;}
.prt h4{margin-bottom:0;}
.prt a{color:#000;}

.contact-f form{
	max-width: 90%;
}
.contact-f form label{
	display:block;
}
.contact-f .form-control{
	width: 100%;
    margin: 0px 0 10px 0;
}
.contact-f textarea.form-control{
	height: 110px;
}
.ftit{
	    text-align: center;
    background: #000;
    color: #fff;
    padding: 15px;
    text-transform: uppercase;
}

  @media screen and (max-width:768px) {
      .logo-wrapper .logo-container{
          width: calc(40% - 25px);
      }
	  .contact-f form{
	max-width: 100%;
}
     .navbar-brand, .footer-logo {
         font-size: 32px;
     }
     .page_title {
    font-size: 28px;
}
.page_sub_title {
    font-size: 16px;
}
.head-title {
    font-size: 28px;
    margin-bottom: 15px !important;
}
.site-footer h5 {
    font-size: 20px;
}
    section .row {
      margin: 0px;
    }
    .about-logos {
      flex-wrap: wrap;
    } 

    .social-icons {
      display: none;
    }
    .navbar-container button.navbar-toggler {
      background: #fff;
  }
  .page_title_area{
    min-height: 240px;
}
#col-1576055181, #col-2138447545{
    padding: 0;
}
#col-1897784877{margin-top:30px;}
#col-419872364{display:none;}
  }


  @media screen and (min-width:786px) {
.py-5{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}
.pt-0 {
    padding-top: 0 !important;
}
    .wedding-cards .wedding-card:nth-child(even) {
      flex-direction: row-reverse;
  }

  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

.social-icons a {
  margin-left: 10px;
  color: #000;
}


  }



/*Custom development*/

.site-footer .footer-contact a{
  color: #666;
  text-decoration: none;
}
.site-footer .footer-contact a:hover{
  color: #fff;
}
.navbar-nav .dropdown-menu  a{
  display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x) !important;
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}




#row-235659766>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-2002096882>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-1262348054>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-1721616598>.col>.col-inner {
    background-color: rgba(71, 100, 107, 0.98);
}

#col-1161424212>.col-inner {
    padding: 30px 0px 10px 0px;
    border-radius: 10px;
}

#text-1390992762 {
    line-height: 0.75;
}

#row-399566011>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-1723073563>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-1809235196>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-44384684>.col>.col-inner {
    background-color: #777;
}
#text-2945650949 h3{
    color:#fff;
}
#col-2138447545>.col-inner {
    padding: 30px 0px 20px 0px;
    border-radius: 0;
}

#text-2945650949 {
    line-height: 0.75;
}

#row-1215436506>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-1847379263>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-1887796182>.col>.col-inner {
    padding: 20px 0px 1px 0px;
    background-color: rgb(255, 255, 255);
}

#row-1256660742>.col>.col-inner {
    background-color: #ccc;
}

#col-1576055181>.col-inner {
    padding: 30px 0px 20px 0px;
    border-radius: 0;
}

#text-1128661839 {
    line-height: 0.75;
}

#row-1697526467>.col>.col-inner {
    padding: 10px 0px 10px 0px;
}

@media (min-width:850px) {
    #row-1697526467>.col>.col-inner {
        padding: 20px 0px 1px 0px;
    }
}

#row-246518736>.col>.col-inner {
    padding: 10px 0px 10px 0px;
}

@media (min-width:850px) {
    #row-246518736>.col>.col-inner {
        padding: 20px 0px 1px 0px;
    }
}

#row-1783639007>.col>.col-inner {
    padding: 10px 0px 10px 0px;
}

@media (min-width:850px) {
    #row-1783639007>.col>.col-inner {
        padding: 20px 0px 1px 0px;
    }
}

#col-1086108744>.col-inner {
    padding: 20px 0px 20px 0px;
}

#gap-1831566680 {
    padding-top: 68px;
}
.box-shadow-5{
    box-shadow: 0 30px 40px 0 rgba(0,0,0,.2);
}

.prtse h3{
    margin-bottom:0px;
}
.trm.hesas li{
    text-align:left;
    text-transform:uppercase;
}
.trm.hesas li:first-child{
    border:0;
}
.trm{
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}
.trm li{
    border-top: 1px solid rgba(106, 138, 146, 0.25);
    padding: 15px 15px;
    text-align: center;
}
.trm li span{
    display: block;
    width: 100%;
    line-height: 2;
}

