﻿@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*
{
    font-family: "Roboto", sans-serif;
}
a
{
    text-decoration:none;
}

/*========= Header Slider Style Section For Other Pages =========*/
/*========= Angled Split Section FIXED =========*/
.angled_split_section {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Transparent Overlay covering both sides */
.angled-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, rgba(27, 37, 59, 0.8) 0%, rgb(0 0 0 / 65%) 100%); */
  z-index: 2;
  pointer-events: none;
}

/* Main container */
.angled-content {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Left Image Section */
.angled-left {
  flex: 1;
  position: relative;
  clip-path: polygon(0 0, 98% 0, 89% 100%, 0% 100%);
  overflow: hidden;
  height: 100%;
  margin-right:-120px;
}

.angled-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.angled-left:hover img {
  transform: scale(1.05);
}

/* Breadcrumb menu visible above overlay */
.breadcrumb-menu {
  position: absolute;
  bottom: 25px;
  left: 40px;
  z-index: 5;
  font-size: 17px;
  font-weight: 500;
}

.breadcrumb-menu a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  
}

.breadcrumb-menu a:hover {
  color: #fcd000;
}

/* Right Carousel Section */
.angled-right {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, rgba(27, 37, 59, 0.8) 0%, rgb(0 0 0 / 65%) 100%);
 /* clip-path: polygon(20% 0, 100% 0, 100% 100%, 5% 100%); */
 clip-path:polygon(13% 0, 100% 0, 100% 100%, 0% 106%);
  overflow: hidden;
  height: 100%;
  margin-left: -5px; /* 👈 removes any visible gap */
}

.angled-right .item {
  height: 100%;
}

.angled-right .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.angled-right .item:hover img {
  transform: scale(1.05);
}

/* Carousel Dots */
.owl-dots {
  position: absolute;
  bottom: 20px;
  right: 25px;
  z-index: 10;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ddd !important;
  border-radius: 50%;
  transition: 0.3s;
}

.owl-dot.active span {
  background: #fcd000 !important;
}

/* Responsive Fix */
@media (max-width: 768px) 
{
  .angled_split_section
  {
      height:100% !important;
  }
  .angled-content {
    flex-direction: column;
  }
  .angled-left
  {
      max-height:30%;
  }
  .angled-right
  {
      display:none !important;
  }

  .angled-left,
  .angled-right {
    clip-path: none;
    margin-left: 0;
  }

  .angled-overlay {
   /* background: rgba(27,37,59,0.5); */
  }
}

/*========= Header Slider Style Section For Other Pages END =========*/

/* ==== Floating Glass Tabs Section ==== */
.page-links-section {
  background: linear-gradient(90deg, #fff7f0, #fff);
  padding: 35px 0;
  border-top: 4px solid #ee482c;
  border-bottom: 4px solid #ee482c;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.page-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  position: relative;
}

/* Background Gradient Line (behind buttons) */
.page-links-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee482c, #ff7b00, #ee482c);
  opacity: 0.2;
  transform: translateY(-50%);
  z-index: 0;
}

.link-item {
  position: relative;
  display: inline-block;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  border-radius: 40px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.6);
}

/* Hover effect */
.link-item:hover {
  transform: translateY(-5px);
  color: #ee482c;
  box-shadow: 0 6px 20px rgba(238,72,44,0.25);
}

/* Active button */
.link-item.active {
  background: linear-gradient(135deg, #ee482c, #ff7b00);
  color: #fff;
  box-shadow: 0 6px 20px rgba(238,72,44,0.35);
  border: none;
}

/* Subtle glow around active */
.link-item.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 2px;
  background: linear-gradient(135deg, #ee482c, #ff7b00);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .link-item {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/*========= Modern Other Page Menu END =========*/

/**=========== Heading Title Style ===========**/
.stylish-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #34495e;
    margin: 10px 0 20px; /* bottom margin thoda kam */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.stylish-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e74c3c);
    margin: 10px auto 0; /* heading ke niche center me */
    border-radius: 2px;
}


/**=========== Heading Title Style END ===========**/

