/*
  blue: #734f96
  --color-dark:#734f96;
  yellow: ffd60a
*/



@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


    @font-face {
        font-family: 'centurygothic';
        src: url('fonts/centurygothic.ttf') format('TrueType');
        font-weight: normal;
        font-style: normal;
    }    
    @font-face {
        font-family: 'centurygothic_bold';
        src: url('fonts/centurygothic_bold.ttf') format('TrueType');
        font-weight: normal;
        font-style: normal;
    }    
    @font-face {
        font-family: 'palatinolinotype_roman';
        src: url('fonts/palatinolinotype_roman.ttf') format('TrueType');
        font-weight: normal;
        font-style: normal;
    }    
    @font-face {
        font-family: 'palatinolinotype_bold';
        src: url('fonts/palatinolinotype_bold.ttf') format('TrueType');
        font-weight: normal;
        font-style: normal;
    }    


html {
  scroll-behavior: smooth;
}

h1, h2{
  margin-bottom: 15px;
}
h2{
  color: #734f96;
}
.section-padding{
  padding: 60px 0;
}
@media (max-width: 768px){
  .section-padding{
    padding: 20px 0;
  }  
}

/* Smooth scroll for anchor links */

    body {
      padding-top: 70px; /* prevent content overlap */
      font-family: "Quattrocento", sans-serif;
      font-size: 16px;
    }
    p{
      line-height: 24px;
    }
    /* Navbar Styling */
    .navbar-custom {
      background-color: #fff;
      border-bottom: 1px solid #eee;
      transition: top 0.4s;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      padding: 20px 100px;
    }
    @media (max-width: 767px){
      .navbar-custom{
        padding: 15px 10px;
      }
    }
    .navbar-custom .navbar-brand {
      color: #734f96 !important; /* logo text color */
      font-weight: bold;
      font-size: 20px;
    }
    .navbar-custom .navbar-brand img{
      padding-top: 0;
      margin-top: -25px;
    }
    .navbar-custom .navbar-nav > li > a {
      color: #333 !important;
      font-weight: 500;
      padding: 15px 20px;
      transition: all 0.3s ease;
      font-weight: bold;
    }
    .navbar-custom .navbar-nav > li > a:hover {
      color: #734f96 !important; /* orange hover */
      border-radius: 35px;
    }
    /* Active link */
    .navbar-custom .navbar-nav > .active > a {
      color: #734f96 !important;
      background: transparent !important;
      border: 1px solid #734f96;
      border-radius: 35px;
      font-weight: bold;
    }
    /* Mobile toggle */
    .navbar-custom .navbar-toggle {
      border: none;
    }
    .navbar-custom .icon-bar {
      background-color: #333;
    }


/*HERO CAROUSEL*/
  /* Fullscreen carousel */
  #myCarousel .item {
    margin-top: 40px;
  }

  .carousel-caption {
      z-index: 2; /* keeps text above the overlay */
  }

  .carousel .carousel-indicators li{
    width: 20px;
    border: 1px solid #fff;
  }
  
  .carousel .carousel-indicators li.active{
    background: #fff;
  }


  /* Overlay text styling 
  .carousel-caption {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    text-align: center;
  }
  .carousel-caption h1 {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  }
  .carousel-caption p {
    font-size: 1.3em;
    color: #eee;
    margin-top: 15px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  }
  */
  /* Controls */

  /* Remove background color on carousel controls */
  .carousel-control.left,
  .carousel-control.right {
      background: none !important;   /* removes default bg */
      filter: none !important;       /* removes old IE filter */
  }

  /* Optional: only show the icons */
  .carousel-control .glyphicon {
      color: #fff;   /* you can change the arrow color here */
      font-size: 20px;
  }

@media (max-width: 768px) {
  .carousel .carousel-indicators li{
    width: 20px;
    height: 5px;
    border: 1px solid #fff;
  }  
  .carousel .carousel-indicators li.active{
    background: #fff;
  }
}


  /*ABOUT US*/
  /* Flexbox fix for Bootstrap 3 rows */
  @media (min-width: 768px) {
    .about-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center; /* vertical centering */
    }
    .about-img-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-img {
      max-width: 80%; /* make it a bit smaller */
      height: auto;
    }
  }

  /* Mobile adjustments */
  @media (max-width: 767px) {
    .about-img {
      margin-top: 20px;
      max-width: 60%; /* smaller on mobile */
    }
  }



/* Section Styling */
.testimonial-section {
  position: relative;
  padding: 50px 0;
  color: #fff;
  overflow: hidden;
}

.parallax-bg {
  /*background-image: url('https://images.pexels.com/photos/69432/pexels-photo-69432.jpeg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;*/
}

.overlay {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

.section-title {
  font-weight: 700;
  margin-bottom: 50px;
  font-size: 32px;
  color: #000;
}

/* Testimonial Items */
.testimonial-item {
  padding: 30px 20px;
  max-width: 1000px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.testimonial-item:hover {
  transform: translateY(-10px);
}

.testimonial-item p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
}

.testimonial-item h4 {
  font-weight: 600;
  color: #734f96;
}

.quote-mark {
  font-size: 50px;
  color: #734f96;
  display: block;
  margin-bottom: 5px;
}

/* Owl Carousel Adjustments */
#testimonial-carousel .owl-dots .owl-dot span {
  background: #333 !important;
  opacity: 0.7;
}

#testimonial-carousel .owl-dots .owl-dot.active span {
  background: #734f96 !important;
  opacity: 1;
}



/*USP*/
/* Section Styling */
#usp {
  padding: 60px 0;
}

.usp-heading {
  font-weight: 700;
  margin-bottom: 15px;
}

.usp-subtext {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
}

/* Card Styling */
.usp-card {
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: transparent; /* No background */
  border: 0px solid transparent;
}

.usp-card h4 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

.usp-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Hover Effect */
.usp-card:hover {
  transform: translateY(-8px);
  border-color: #ddd;
  background: #fff; /* Subtle hover background */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Icon Colors */
.icon-blue { color: #007bff; }
.icon-green { color: #28a745; }
.icon-orange { color: #ff6600; }
.icon-purple { color: #6f42c1; }
.icon-teal { color: #20c997; }
.icon-red { color: #dc3545; }



/*CONTACT SECTION*/
/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0073e6;
  outline: none;
}

.contact-form button {
  padding: 14px 22px;
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.contact-form button:hover {
  background: #005bb5;
}

/* Map */
.contact-map iframe {
  width: 100%;
  min-height: 400px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}



/* Footer Styling */
.site-footer {
  background: #734f96;
  color: #aaa;
  padding: 60px 0 20px;
  font-size: 15px;
  margin-top: 100px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.site-footer p {
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 12px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 15px 0 0;
  margin-top: 30px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  .footer-social a {
    margin: 0 8px;
  }
}


/*DOCUMENTS*/
/* Custom Tabs Styling */
.custom-pdf-tabs li a {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
  padding: 15px 15px;
  text-align: center;
  border-radius: 25px;
  display: block;
  transition: all 0.3s ease;
}

/* Active + Hover States */
.custom-pdf-tabs li.active a,
.custom-pdf-tabs li.active a:focus,
.custom-pdf-tabs li.active a:hover,
.custom-pdf-tabs li a:hover {
  background: #734f96 !important;
  color: #fff !important;
  border-color: #734f96 !important;
}

.pdf-embed{
  width: 100%;
  height: 600px;
}


/* Page Header Section */
#page-header {
  position: relative;
  background: url('images/header-bg.jpg') center center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 50px;
}

.page-header-overlay {
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}

.page-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #f1f1f1;
  animation: fadeInUp 1.2s ease;
}

@media (max-width: 575px) {
  #page-header{
    height: 200px;
    margin-bottom: 10px;
  }
  .page-title{
    font-size: 32px;
  }
}



/* Simple fade animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}



/*SECTION HEADING WITH SHADOW*/
.section-heading {
  position: relative;
  text-align: center;
  margin: 60px 0;
  color: red;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  position: relative;
  z-index: 2;
}

.section-heading .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04); /* light faded background */
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}


/*CUSTOMERS*/

/* Marquee wrapper */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 6px;
  background: transparent; /* change or remove if you want transparent */
  padding: 18px 10px;/*
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);*/
}

/* The moving track */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  /* animation: moveRight var(--marquee-duration, 30s) linear infinite; */
  animation: moveRight 20s linear infinite;
  will-change: transform;
}

/* keyframes move from -50% -> 0 so items move left-to-right */
@keyframes moveRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* individual item */
.customer-item {
  flex: 0 0 auto;
  width: 160px;              /* change width per design */
  text-align: center;
  user-select: none;
}

/* Logo */
.customer-item img {
  max-width: 120px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
  transition: transform 0.25s ease;
}

/* Name link under logo */
.customer-name {
  display: block;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  border-top: 1px dotted grey;
}
.customer-name:hover {
  text-decoration: none;
}


/* hover effect on logo */
.customer-item:hover img {
  transform: scale(1.05);
}

/* Pause animation on hover by applying paused state on the track */
.marquee-wrapper:hover .marquee-track,
.marquee-wrapper.touch-paused .marquee-track {
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .customer-item { width: 140px; }
  .customer-item img { max-width: 100px; }
  .marquee-track { gap: 20px; animation-duration: 22s; }
}

@media (max-width: 575px) {
  .customer-item { width: 120px; }
  .customer-item img { max-width: 90px; }
  .marquee-track { gap: 16px; animation-duration: 18s; }
}



/*CTA*/
/* Common button styling */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

/* Primary button */
.primary-btn {
    background: #734f96;
    color: #ffd60a;
    border: 2px solid #734f96;
}

.primary-btn:hover {
    background: transparent;
    color: #734f96;
    text-decoration: none;
}

/* Secondary button */
.secondary-btn {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    margin-left: 10px;
}

.secondary-btn:hover {
    background: #333;
    color: #fff;
    box-shadow: 0 0 12px rgba(51, 51, 51, 0.4);
    text-decoration: none;
}


/*contact*/

.section-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #555;
  margin-bottom: 60px;
  font-size: 16px;
}

.staff-card {
  background: #fff;
  border-radius: 12px;
  padding: 50px 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.staff-img img {
  margin-bottom: 15px;
  width: 200px;
  height: 240px;
  object-fit: cover;
}

.staff-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.staff-role {
  color: #666;
  margin-bottom: 15px;
}

.staff-social a {
  color: #555;
  margin: 0 8px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.staff-social a:hover {
  color: #734f96;
}



/* WhatsApp Floating Button */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-chat img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-chat img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


/*HERO SECTION*/
/* HERO SECTION */
#hero-distributorship {
  position: relative;
  width: 100%;
  height: 65vh; /* adjust height as needed */
  background: url('images/iitk-img.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
}

/* Dark Transparent Overlay */
#hero-distributorship .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* transparency */
  z-index: 1;
}


/* Text Content */
#hero-distributorship .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  padding: 0 15px;
}

/* Heading */
#hero-distributorship .hero-title {
  font-size: 6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Subheading */
#hero-distributorship .hero-subtitle {
  font-size: 32px;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  #hero-distributorship {
    height: 50vh;
    background-attachment: scroll; /* smoother on mobile */
  }
  #hero-distributorship .hero-title {
    font-size: 30px;
  }
  #hero-distributorship .hero-subtitle {
    font-size: 16px;
  }
}


/*ORGANIZERS*/
.sponsor-card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.sponsor-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.media-heading {
  font-weight: 600;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .media-left,
  .media-body {
    display: block;
    text-align: center;
  }
  .media-left img {
    margin: 0 auto 10px;
  }
}


/**/
.home-sub-topics-section .container .row .col-sm-4{
  padding: 5px 20px;
}


.listStyleOne li{
  list-style: none;
  margin-left: 15px;
  margin-bottom: 5px;
}
.listStyleOne li:before {    
  font-family: 'FontAwesome';
  content: '\f101';
  margin:0 5px 0 -45px;
  color: #734f96;
}   

.hero-icons{
  color: #734f96;
  font-size: 42px;
}

.imp-dates{
  border-width: 0;
}
.imp-dates tr td{
  padding-bottom: 50px;
  font-size: 18px;
}
.imp-dates tr td:nth-child(1){
  font-weight: bold;
}