


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

   body {
    height:100%;
    width: 100%;    
    font-weight:700;
    font-family: 'Poppins', sans-serif;
    }




    /* header section start*/

 header .cicu-navbar-container {
        background: linear-gradient(145deg, #fff, #fff);
    }
.header-scrolled{
  padding-top: 0px !important;
}

    header .cicu-navbar {
        background-color: #f5f5f5;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    header .navbar-scrolled{
        background-color: unset !important;
        box-shadow: unset !important;
        border-radius: unset !important ;
    }

    header .main-logo {
        width: 300px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .navbar-logo {
        max-width: 230px;
        object-fit: contain;
        display: block;
    }

    header .navbar-nav .nav-link {
        color: #1E3A8A;
        font-weight: 600;
        padding: 8px 10px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    header .navbar-nav .nav-link:hover {
        border-bottom-color: #f26934;
        color: #f26934;
    }

    .navbar-toggler {
        border: none;
        background: none;
    }

    .navbar-toggler .fa-bars {
        font-size: 1.5rem;
        color: #1E3A8A;
    }


    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: #f5f5f5;
        z-index: 9999;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        0% {
            transform: translateY(-100%);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .mobile-nav-links {
        list-style: none;
        padding: 0;
    }

    .mobile-nav-links li {
        margin: 15px 0;
    }

    .mobile-nav-links a {
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        color: #1E3A8A;
        transition: color 0.3s;
    }

    .mobile-nav-links a:hover {
        color: #f26934;
    }

    .close-btn {
        position: absolute;
        top: 25px;
        right: 25px;
        background: none;
        border: none;
        font-size: 28px;
        color: #333;
        cursor: pointer;
    }


       /* header section End*/
.fixed-img-box {
                                        /* width: 200px;
                                        height: 200px; */
                                        /* background-color: #f8f9fa; */
                                        /* light background for empty space */
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        overflow: hidden;
                                    }

                                    .fixed-img-box img {
                                        /* max-width: 100%;
                                        max-height: 100%;
                                        object-fit: contain; */

                                        aspect-ratio: 99/100;
                                        object-fit: contain;
                                        object-position: center;
                                        height: 100%;
                                    }

 .profile-img-container {
                                                width: 145px;
                                                height: 145px;
                                                border-radius: 50%;
                                                overflow: hidden;
                                                border: 2px solid #f26934;
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                            }

                                            .profile-img {
                                                width: 100%;
                                                height: 100%;
                                                object-fit: cover;
                                                border-radius: 50%;
                                            }

                                            .profile-initials {
                                                background-color: #f26934;
                                                color: white;
                                                font-weight: bold;
                                                font-size: 1.25rem;
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                width: 100%;
                                                height: 100%;
                                                border-radius: 50%;
                                            }
       
/* footer section */

.footer-cicu{
  background: linear-gradient(to bottom, #f5f5f5, #ffffff);
 
  position: relative;
}

.footer-logo {
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.footer-title {
  color: #f26934;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: #1E3A8A;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #f26934;
  transition: width 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f26934;
  text-decoration: none;
}

.footer-links a:hover::after {
  width: 100%;
   text-decoration: none;
}

.footer-contact i {
  color: #1E3A8A;
  min-width: 18px;
}

.footer-contact a {
  color: #1E3A8A;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f26934;
  text-decoration:none;
}

.footer-icon {
  color: #1E3A8A;
  background-color: #fff;
  border: 1px solid #1E3A8A;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background-color: #f26934;
  border-color: #f26934;
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  font-size: 0.9rem;
  color: #444;
}

.footer-bottom a {
  color: #1E3A8A;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f26934;
  text-decoration: none;
}

/* Scroll to top button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  background-color: #f26934;
  color: white;
  border: none;
  outline: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #FF6B00;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 576px) {
  .footer-logo {
    margin: 0 auto;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer-icon {
    padding: 8px;
    font-size: 1rem;
  }
}
 

/* footer section end */



    /* Slider Start*/


.carousel-slide-bg {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.carousel-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  max-width: 800px;
}

.headline {
  color:#fff;
  font-size: 3.5rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  animation: slideInDown 1s ease-in-out;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 576px) {
  .headline {
    font-size: 2rem;
    line-height: 1.2;
  }
}


.highlight {
  color: #f26934;
}

.subtext {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 1rem;
  line-height:1.6;
  color:#f1f5f9;
  animation: fadeInUp 1.3s ease-in-out;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}


.fade-in {
  animation: fadeInUp 1s ease-in-out;
}

@keyframes slideInDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
 0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}



/* About section in home page */

.about-carousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 0.75rem;
}

.about-carousel .owl-nav,
.about-carousel .owl-dots {
  margin-top: 10px;
  text-align: center;
}


/* Highlights */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

#highlights .card-body i {
    display: inline-block;
}

#highlights .card-title {
    font-size: 1.25rem;
}

/* Why join*/


.why-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-card i {
    transition: transform 0.3s ease;
}

.why-card:hover i {
    transform: scale(1.2);
}

@media (max-width: 576px) {
  .why-card h6 {
    font-size: 1rem;
  }
  .why-card p {
    font-size: 0.85rem;
  }
}




/* Core Values Section Enhancements */
.core-values-section {
    background: linear-gradient(90deg, #1E3A8A, #f26934);
    color: white;
    padding: 4rem 0;
}

.core-values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-value-card {
    padding: 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.core-value-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.core-value-card h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.core-value-card p {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    color: #f1f1f1;
}





/* Contact section */

 .bg-dark-blue {
            background-color: #061f3a;
            font-weight:400;
        }

        .circle1,
        .circle2 {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
            mix-blend-mode: screen;
            z-index: 0;
        }

        .circle1 {
            bottom: 10px;
            left: 20px;
            width: 120px;
            height: 120px;
            background-color: #2382d8;
        }

.circle2 {
     bottom: 60px;
    left: 100px;
    width: 80px;
    height: 80px;
    background-color: #1f766b;
        }


.hero-carousel .btn,
.contact-hero .btn,
.about-hero .btn        
{
  color:#fff;
}
 .btn:hover {
            background-color: #1E3A8A;
            color: #ffffff;
        }


 .contact-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 10;
}
/* About-us Page*/

.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 10;
}

.vision-mission-card {
        transition: all 0.3s ease-in-out;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .vision-mission-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border-color: #f97316; /* Optional: highlights the border with orange */
    }

   
    .team-card {
        transition: all 0.3s ease;
        background-color: #fff;
    }

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-color: #0d6efd;
    }

    .team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  
  transition: transform 0.3s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}
/* 
Membership page */

.card {
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: translateY(-5px) scale(1.05);;
    box-shadow: 0 10px 20px  #f26934;
   
}
       

/* Pagination page */
/* Style the pagination links */
.pagination .page-link {
  color: #1E3A8A;
  border: 1px solid #1E3A8A;
  border-radius: 8px;
  margin: 0 6px;

  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.pagination .page-link:hover {
  background-color: #1E3A8A;
  color: #fff;
  border-color: #1E3A8A;
}

/* Active page */
.pagination .page-item.active .page-link {
  background-color: #1E3A8A;
  border-color: #1E3A8A;
  color: #fff;
  font-weight: 600;
}

/* Disabled links (if you add them) */
.pagination .page-item.disabled .page-link {
  color: #ccc;
  border-color: #eee;
  background-color: #f9f9f9;
}

/* Membership  */

.join-card {
    background: transparent;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
  }

  .join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #1E3A8A;
  }

  .join-card:hover.gradient-red {
    border-color: #e63946;
  }

  .join-card:hover.gradient-orange {
    border-color: #f26934;
  }

  .join-card:hover.gradient-blue {
    border-color: #0058a3;
  }

  .join-card:hover.gradient-navy {
    border-color: #003f87;
  }

  .join-card:hover.gradient-yellow {
    border-color: #f8c100;
  }

  .join-card:hover.gradient-steel {
    border-color: #4682b4;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
  }

  .join-card:hover .icon-circle {
    transform: scale(1.1);
  }

  .gradient-red {
    background: linear-gradient(45deg, #e63946, #d62828);
  }

  .gradient-orange {
    background: linear-gradient(45deg, #f26934, #f48c06);
  }

  .gradient-blue {
    background: linear-gradient(45deg, #0058a3, #0077b6);
  }

  .gradient-navy {
    background: linear-gradient(45deg, #003f87, #1d3557);
  }

  .gradient-yellow {
    background: linear-gradient(45deg, #f8c100, #f4a261);
  }

  .gradient-steel {
    background: linear-gradient(45deg, #4682b4, #6a8caf);
  }

/*==================================================
               Membership-form
 ===============================================*/
    
.form-wrapper {
      background: #f26934;
      max-width: 850px;
      margin: 50px auto;
      padding: 40px 35px;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease-in-out;
    }

    .form-wrapper h2 {
      text-align: center;
      color: #fff;
      margin-bottom: 25px;
      font-style: italic;
    }

    form label {
      font-weight: 500;
      margin-bottom: 6px;
      display: block;
      color: #1E3A8A;
    }

    input, select, textarea {
      width: 100%;
      padding: 10px 14px;
      font-size: 15px;
      border: 1px solid #1E3A8A;
      border-radius: 6px;
      margin-bottom: 15px;
      transition: border 0.2s;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #f26934;
     box-shadow: 0 0 0 0.15rem rgba(242, 105, 52, 0.25);
    }

    .form-row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1;
      min-width: 250px;
    }

    textarea {
      resize: vertical;
    }

   
     input[type="radio"] {
  -webkit-appearance: radio !important;
  -moz-appearance: radio !important;
  appearance: radio !important;
}


    .submit-btn {
      background: #1E3A8A;
      color: #fff;
      font-weight: 600;
      font-style: italic;
      padding: 12px 25px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background: #f26934;
    }

    @media (max-width: 768px) {
      .form-row {
        flex-direction: column;
      }
    }
/*==================================================
               Membership-form end
 ===============================================*/
/* 
Meeting Page */

/* Hover shadow lift */
#opportunities .card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease ;

}
 #opportunities .card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Icon color pulse */
#opportunities .card-hover i {
  transition: color 0.3s ease, transform 0.3s ease;
}
#opportunities .card-hover:hover i {
  color: #f26934;
  transform: scale(1.1);
}

.gallery-img {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* Benefits */
  .benefit-card {
    background: transparent;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
  }

  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #1E3A8A;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f3f4f6;
    margin: 0 auto; */
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
  }

  @media (max-width: 767px) {
    .benefit-card {
      padding: 20px 15px;
    }
  }

/* Events Section*/

.event-card {
  transition: transform 0.4s ease;
}

.event-card:hover {
  transform: scale(1.03);
}

.event-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover .event-overlay {
  opacity: 1;
}

.event-overlay h5 {
  font-size: 1.1rem;
  font-weight: 600;
}
.event-card img {
  width: 100%;
  height: 250px; /* Adjust height as per your design */
  object-fit: cover;
  border-radius: 0.5rem;
}


/* Industrial Visits */
  #industrial-visits .card-title {
    color: #6c1c8c;
    font-weight: 600;
  }
  #industrial-visits .card-text {
    font-size: 0.95rem;
    color: #555;
  }

  .visit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.visit-card:hover img {
  transform: scale(1.05);
}

.visit-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

