 :root {
            --primary: #065496;
            --primary-dark: #05447d;
            --secondary: #ec5f07;
            --secondary-dark: #d45506;
            --dark: #1a3a5f;
            --light: #f8f9fa;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
body,html {
overflow-x:hidden !important
}
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
      
        .btn-secondary {
    background-color: #c7295c;
    border-color: #c7295c;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}
        
        .btn-secondary:hover {
                        transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
       
.fixed-top {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
        
        /* Header */
      .navbar {
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}
        
        .navbar.scrolled {
            background: var(--white);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--dark);
            margin: 0 10px;
            position: relative;
            padding: 5px 0;
        }
        
      .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c7295c;
    transition: var(--transition);
}
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 100%;
        }
        
        a.navbar-brand img {
    width: 150px;
}
        /* Section Styling */
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 32px;
           color: #03445a;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
    
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            transition: var(--transition);
        }
        
      
        
        /* Services Section */
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            text-align: center;
            padding: 40px 30px;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(6, 84, 150, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 32px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            background: var(--primary);
            color: var(--white);
        }
        
        /* Products Section */
       
    .product-box img {
    width: 220px;
    object-fit: cover;
}
  .product-box h5 {
    padding: 15px;
    color: #ffffff;
}
    .product-box:hover {
      transform: scale(1.05);
    }
    section#products .row.g-4 {
    padding-top: 50px;
}
section#products {
    background-image: url(img/Bg-1.webp);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 75px 0 !important;
}
section#products  h2.fw-bold.mb-4, section#products p {
    color: #fff;
}
        
        /* contact */
         .contact-section {
      padding: 60px 0;
    }
    .contact-card {
      display: flex;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    }
    .contact-left {
      background: linear-gradient(135deg, #e91e63, #c2185b);
      color: #fff;
      padding: 40px 30px;
      flex: 1;
    }
    .contact-left h3 {
      font-weight: 700;
      margin-bottom: 25px;
    }
    .contact-info {
      margin-bottom: 20px;
    }
    .contact-info i {
      font-size: 20px;
      margin-right: 12px;
    }
    .contact-right {
      background: #fff;
      padding: 40px 30px;
      flex: 2;
    }
    .contact-right h3 {
      font-weight: 700;
      margin-bottom: 25px;
    }
    .btn-custom {
      background: #e91e63;
      color: #fff;
      border-radius: 30px;
      padding: 10px 28px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-custom:hover {
      background: #c2185b;
      color: #fff;
    }
        
        /* Footer */
       footer {
    background: #c6295c;
    color: var(--white);
    padding: 70px 0 0;
}
        
        .footer-col h4 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
      .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    opacity: 1;
}
        
        .footer-links a:hover {           
            opacity: 0.8;
            padding-left: 5px;
        }
        
      .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    color: #c6295c;
    transition: var(--transition);
    margin-right: 10px;
    text-decoration-line: none;
}
        
        .social-links a:hover {          
            transform: translateY(-5px);
            cursor: pointer;
        }
img.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
}
        
        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;           
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Custom Carousel */
        /* .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        } */
        
        .carousel-control-prev {
            left: -70px;
        }
        
        .carousel-control-next {
            right: -70px;
        }
        
.carousel-control-next-icon, .carousel-control-prev-icon {
    /* background-color: #c6295c !important; */
    opacity: 1 !important;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 1.5 !important;
    transition: opacity .15s ease;
}

        /* counter Section */
       .counter {
    padding: 80px 0;
   background: linear-gradient(to right, #f8dce6 0%, #f8f9fa 100%);
    color: #000;
    text-align: center;
}

        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
      .counter-item h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #c7295c;
}
        
        .counter-item p {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    height: auto !important;
}
h3.mb-4.cust {
    margin-top: 30px;
}
           
            
           
            
            .section {
                padding: 80px 0;
            }
            
           
        }
        
        @media (max-width: 768px) {
           
            
           h1.mb-4.cust {
    margin-bottom: 10px !important;
    margin-top: 35px;
}
.floater {
    animation-name: none !important;  
}
img.thanx-img {
    width: 100%;
}
a.navbar-brand img {
    width: 100px !important;
}
.contact-card {
    display: block !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
        }

        .custom-slider{
  width: 90%;
  margin: auto;
}
.custom-box {
    width: 200px;
    height: 100px;
    text-align: center;
    box-shadow: 2px 2px 3px gray;
    margin: 15px;
    font-size: 5em;
    padding: 10px;
}
.slick-prev, .slick-next {
    position: absolute;
    line-height: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #ec5f07;
}
.slick-slider{
  user-select: none;
}
.slick-next{
  right: -30px;
}
.slick-prev{
  left: -30px;
}
.slick-next:before{
  content: '\003e';
  font-size: 1.2em;
  font-weight: 1000;
  padding-left: 12px;
  color: white;
}
.slick-prev:before{
  content: '\003c';
  font-size: 1.2em;
  font-weight: 1000;
  padding-left: 9px;
  color: white;
}
.slick-slide img {
    display: block;
    width: 100%;
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
a.navbar-brand img {
    width: 150px;
}

.service-card h3 {
    color: #1a3a5f;
}
.service-card p {
    color: #333
}
section#youtube .mb-4 {
    margin-bottom: 3.5rem!important;
}



/* timeline section */
  .why-box {
  align-items: flex-start;
  gap: 15px;
}
.icon-circle {
    width: 70px;
    height: 70px;
    border: 2px solid #c7295c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-box {
    align-items: flex-start;
    gap: 15px;
    display: flex;
    align-items: center;
}
.icon-circle i {
  font-size: 30px;
  color: #c7295c;/* pink icon */
}
section#why-us {
    padding: 70px 0 !important;
}
.why-box h5 {
  margin-bottom: 8px;
}
.why-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}


.contact-info a {
    color: #333;
    text-decoration-line: none;
}

@media (max-width: 992px) {
    section#about{
        padding: 30px 0 !important;
    }
}
section#about {
    padding: 70px 0 !important;
}
.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: fixed !important;
}

.abt-features {
            margin-top: 30px;
        }
        
        .abt-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
      .feature-icon {
    height: 80px;
    width: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #c7295c;
}
.feature-icon i {
    font-size: 40px;
}

.service-box {
    color: #fff;
    background: #c7295c;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 0 30px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}
.service-box:before{
    content: "";
    background: #fff;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%; 
    z-index: -1; 
}
.service-box .service-icons {
    background: #c72a5d;
    font-size: 35px;
    text-align: left;
    line-height: 180px;
    width: 100px;
    height: 130px;
    padding: 0 0 0 30px;
    margin: -60px 0 8px;
    border-radius: 20px 50% 80% 0 / 20px 50% 50% 0;
}
.service-box .title {
    background: #c72a5d;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 15px 22px;
    margin: 0;
    border-radius: 30px 30px 100% 100%;
    box-shadow: 0 6px 6px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    color: #fff;
}
.service-box .description {
    color: #333333;
    font-size: 16px;
    line-height: 23px;
    margin: 0 25px;
}
.service-box.yellow, .service-box.yellow .title, .service-box.yellow .service-icons {
    background: #003d55;
}
.service-box.blue, .service-box.blue .title, .service-box.blue .service-icons {
    background: #5417ff;
}
.service-box.green,
.service-box.green .title,
.service-box.green .service-icons{
    background: #3c9e37;
}
@media only screen and (max-width: 990px){
    .service-box{ margin: 0 0 30px; }
}
.floater{
	animation-name: floater;
	animation-duration: 3s;	
	animation-iteration-count: infinite;
	visibility: visible !important;	
}
@keyframes floater {
	0% { transform: translateY(0%); }
	50% { transform: translateY(8%); }
	100% { transform: translateY(0%); }
}


section#new-about {
    padding-bottom: 50px !important;
}
h1.mb-4.cust {
    margin-bottom: 10px !important;
}

.footer-form {
    position: fixed;
    right: 15px;
    bottom: 0;
    z-index: 1000;
    width: 286px;
}
.footer-form .heading-look {
    font-size: 22px;
    background: #c7295c;
    color: #fff;
    text-align: center;
    display: block;
    padding: 4px 0;
    cursor: pointer;
}
div#mini_contact_form {
    padding: 15px;
    display: none;
    background: #ffff;
}
.footer-form button.btn.first.btn-primary.text-center {
    background-color: #e91e63;
    border: none;
    margin-top: 15px;
}

.bubble {
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    top: 0;
    margin: auto;
    justify-content: center;
    align-items: flex-end;
    z-index: 99;
}
.bubble a.call {
    background: #b5255e;
}
.bubble a {
    border-radius: 5px 0 0 5px;
    margin-top: 8px;
    box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 46%);
    overflow: hidden;
    color: #fff;
    padding: 10px 14px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 55px;
    transition: all 0.5s linear;
    height: 50px;
    overflow: hidden;
    white-space: nowrap;
}
.bubble label {
    display: none;
    transition: all 0.5s linear;
    margin-bottom: 0;
    margin-right: 35px;
    font-size: 16px;
    text-transform: capitalize;
}
.bubble a.whats {
    background: #25D366;
}
.bubble a:hover {
    width: 100%;
}
.bubble a:hover label {
    display: block;
}
a.pdf-file {
    background: red;
}


.fvcon, .mobile-form{
    display: none;
}

.mobile-view{
     display: none !important;
}
@media only screen and (max-width: 767px) {
 .mobile-view{
     display: block !important;
}
.Desktop-View{
      display: none !important; 
}
    .fvcon
    {
        position: fixed;
        background: #234aae;
        height: 45px !important;
        width: 100%;
        display: block;
        left: 0px;
        bottom: 0px;
    }
    
    .fvcon .ftcontf {
        width: 50%;
        float: left;
        display: block;
        text-align: center;
        color: #fff;
        font-weight: 800;
        line-height: 42px;
        height: 45px !important;
        text-decoration: none;
    }  
    
    .fvcon .ftcontf.what {
        background: #25d366;
    }
   .fvcon .ftcontf.i {
        background: #00afef;
    }
    .footer-form, .bubble{
        display:none;
    }
    
    .mobile-form{
         width: 80%;
        margin: 30px auto;
        text-align: center;
        padding: 40px;
        background: #c7295c;
        border-radius: 20px;
        display: block;
        color: #fff;
    }
}


/***********24-9-25 ****************/

.pdf-download{
    position: fixed;
    z-index: 999999;
    right: 0;
    top: 50%;    
}
.pdf-download img{
    height:auto;
    width:50px;
}

#myModal{
    display: flex;
    width: 100%;
    margin: 0px auto;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
} 
#myModal .modal-content{
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    height:250px;
    top:20%;
    text-align: center;
}
span.close1{
     position: relative;
    left: 50%;   
}



@media only screen and (max-width: 767px) {

#myModal .modal-content {
    width: 75%;
    margin: 0 auto;
    padding: 20px;
    height: 250px;
    top: 20%;
    text-align: center;
}
}
