.space{
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 1.333%;
  }
  
}
.about-list-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list-vertical li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 11px 0;
}

/* Circle */
.about-list-vertical .dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    background: #f4b400;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

/* Soft ring around circle */
.about-list-vertical .dot::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(244, 180, 0, 0.4);
    border-radius: 50%;
}

/* Text */
.about-list-vertical .text strong {
    display: block;
    font-size: 15.5px;
    font-weight: 600;
    color: #000000;
    /* margin-bottom: 3px; */
}

.about-list-vertical .text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #222222;
}

/* Optional hover (very subtle) */
.about-list-vertical li:hover .dot::after {
    border-color: #f4b400;
}
.feature-box.style-2 i {
  color: #000;
  font-size: 33px!important;
}
h2 {
    font-weight: 500;
}
/* Section spacing tweak (optional) */
#section-services {
    position: relative;
}

/* Feature box base */
.feature-box.style-2 {
    position: relative;
    padding: 30px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}


/* Hover effect */
.feature-box.style-2:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Icon styling – top centered */
.feature-box.style-2 i {
    width: 70px;
    height: 70px;
    background: #f4b400;
    color: #000;
    border-radius: 50%;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Heading */
.feature-box.style-2 .text h3 {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 500;
    color: #000000;
}

/* Paragraph */
.feature-box.style-2 .text p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: #333333;
}

/* Top accent line */
.feature-box.style-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f4b400; /* yellow */
    border-radius: 10px 10px 0 0;
}


/* .feature-box.style-2:hover::before {
    opacity: 1;
} */
.feature-box.style-2 i {
  width: 60px;
  height: 60px;
  background: #f4b400;
  color: #000;
  border-radius: 50%;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-box.style-2 {
        padding: 30px 22px;
        margin-bottom: 15px;
    }

    .feature-box.style-2 i {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .feature-box.style-2 .text h3 {
        font-size: 19px;
    }
}

.timeline-section {
    padding: 80px 20px;
    background: #f4f4f4;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* .timeline-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #000;
    font-weight: 700;
} */

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 20px 0;
}

/* Vertical center line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #f9c108;
    border-radius: 2px;
    z-index: 0;
}

/* Timeline item */
.timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 25px 0;
}

/* Circle on center line */
.timeline-year {
    width: 60px;
    height: 60px;
    background: #f9c108;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 10px #f9c108;
}

/* Card styles */
.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 45%;
    position: relative;
}

/* Left side cards */
.timeline-item-left .timeline-content {
    margin-right: auto;
    text-align: right;
}

/* Right side cards */
.timeline-item-right .timeline-content {
    margin-left: auto;
    text-align: left;
}

/* Triangle connectors */
.timeline-item-left .timeline-content::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.timeline-item-right .timeline-content::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -15px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

/* Headings & text */
.timeline-content h3 {
    margin: 0 0 10px;
font-size: 17px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 500;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.mb-20-h2{
    margin-bottom: 30px !important;
      margin-top: 0px !important;
      font-size: 35px;
}
@media screen and (max-width: 768px) {
    /* Stack items vertically */
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        width: 100%;
        margin-bottom: 40px;
    }

    /* Circle stays centered on the line */
    .timeline-year {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-bottom: 15px;
    }

    /* Card below circle, centered */
    .timeline-content {
        width: 90% !important;
        text-align: center !important;
        margin: 0 auto;
        padding: 70px 50px 7px;
    }

    /* Hide any connector triangles on mobile */
    .timeline-item-left .timeline-content::after,
    .timeline-item-right .timeline-content::after {
        display: none;
    }
}
/* .panel-success {
  border-color: #fff;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.panel-success > .panel-heading {
  color: #fff;
  background-color: #002762;
  border-color: #002762;
  font-size: 24px;
}
.panel-body {
  padding: 15px;
}
 .panel-heading {
  color: #f9c108!important;
  
}
.panel-body {
    border: solid 1px #f9c108 !important;
}
.panel-success {
  border-color: #f9c108 !important;
} */
 /* ===============================
   SECTION BACKGROUND
================================ */
#section-contact {
    background: linear-gradient(180deg, #1c1c1c, #0f0f0f);
}

/* ===============================
   ENQUIRY FORM CARD
================================ */
#section-contact .panel {
    background: #1b1b1b;
    border: 1px solid rgba(244,180,0,0.4);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    position: relative;
}

#section-contact .panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border-top: 4px solid #f4b400;
    pointer-events: none;
}

#section-contact .panel-heading {
    background: transparent;
    color: #f4b400 !important;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px dashed rgba(244,180,0,0.3);
    padding: 16px;
}

/* ===============================
   FORM INPUTS
================================ */
#section-contact .form-control {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    border-radius: 6px;
    height: 42px;
    padding-left: 14px;
    transition: all 0.25s ease;
}

#section-contact textarea.form-control {
    height: auto;
}

#section-contact .form-control::placeholder {
    color: #888;
}

#section-contact .form-control:focus {
    border-color: #f4b400;
    background: #121212;
    box-shadow: none;
}

/* ===============================
   CAPTCHA STYLE
================================ */
#section-contact .realperson-text {
    color: #f4b400;
    opacity: 0.8;
}

/* ===============================
   BUTTON HOVER EFFECTS
================================ */
#section-contact .btn-success {
    background: #f4b400;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

#section-contact .btn-success:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.45);
}

/* ------------------------------- */

#section-contact .btn-warning {
    background: transparent;
    color: #f4b400;
    border: 1px solid #f4b400;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

#section-contact .btn-warning:hover {
    background: #f4b400;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.35);
}


/* ===============================
   FORCE BLOCKS ONE BELOW ANOTHER
================================ */
#section-contact .col-md-3.text-center {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
}

/* ===============================
   BLOCK / CARD DESIGN
================================ */
#section-contact .col-md-3.text-center {
    background: #181818;
    border: 2px solid #2f2f2f;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

/* hover effect */
#section-contact .col-md-3.text-center:hover {
    border-color: #f4b400;
    transform: translateX(6px);
}

/* ===============================
   ICON STYLE
================================ */
#section-contact i.fa {
    font-size: 30px;
    color: #f4b400;
    margin-bottom: 12px;
    display: block;
}

/* ===============================
   TEXT STYLE
================================ */
#section-contact h6 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #fff;
}

#section-contact a,
#section-contact .col-md-3.text-center {
    color: #ddd;
    font-size: 15px;
    text-decoration: none;
}

/* link hover */
#section-contact a:hover {
    color: #f4b400;
}
/* ======================================
   FORCE SINGLE COLUMN (ONE CARD PER ROW)
====================================== */
#section-contact .col-md-6 > .row > .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* ======================================
   CONTACT CARD DESIGN
====================================== */
.contact-card {
    background: linear-gradient(145deg, #1b1b1b, #101010);
    border: 2px solid #2a2a2a;
    border-top: 6px solid #f4b400;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.65);
    transition: all 0.35s ease;

    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* hover effect */
.contact-card:hover {
    transform: translateY(-6px);
    border-color: #f4b400;
    box-shadow: 0 14px 35px rgba(0,0,0,0.85);
}

/* icon */
.contact-card i.fa {
    font-size: 30px;
    color: #f4b400;
    margin-bottom: 10px;
}

/* heading */
.contact-card h6 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ffffff;
}

/* content */
.contact-card a,
.contact-card div {
    color: #dcdcdc;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.contact-card a:hover {
    color: #f4b400;
}

.timer{
    margin-top: 0px!important;
}
.scroll-down {
    width: 80px;      /* container bigger */
    height: 140px;
    position: relative;
    margin: auto;
}

.scroll-down span {
    position: absolute;
    left: 50%;
    width: 40px;      /* arrow size */
    height: 40px;
    border-bottom: 7px solid #f4b400; /* thick yellow */
    border-right: 7px solid #f4b400;
    transform: translateX(-50%) rotate(45deg);
    animation: arrowMove 1.8s infinite;
}

.scroll-down span:nth-child(1) {
    top: 0;
}

.scroll-down span:nth-child(2) {
    top: 48px;        /* gap between arrows */
    animation-delay: 0.35s;
}

@keyframes arrowMove {
    0% {
        opacity: 0;
        transform: translate(-50%, -15px) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 30px) rotate(45deg);
    }
}
/* Hide logo scroller on mobile */
@media screen and (max-width: 480px) {
    #owl-logo-4 {
        display: none !important;
    }
}
.styled-list {
    list-style: none; /* remove default bullets */
    padding-left: 0;
    margin: 0;
}

.styled-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.styled-list .check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: #f9c108; /* brand color */
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}
.row-mt{
    margin-top: 42px;
}
.img-fluid1{
    margin-top: 30px!important;
}
.rhino-card{
    background:#f2f2f2; /* तुझ्या card चा color */
    padding:60px 30px;
    min-height:520px;
    display:flex;
    flex-direction:column;
    align-items:center;        /* horizontal center */
    justify-content:flex-start; /* top पासून start */
    text-align:center;
}

/* Logo */
.rhino-logo{
    max-height:70px;
    margin-bottom:10px;
}

/* Heading */
.rhino-title{
    font-weight:700;
    margin-bottom:20px;
}

/* Image */
.rhino-oval{
    width:220px;
    height:182px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 25px 40px rgba(0,0,0,0.15);
}
.mt-precision{
    margin-top:20px;   /* इथे spacing adjust करू शकतो */
}
.rhino-card-new{
    background:#dae3f4;   /* इथे card color change करू शकतो */
    padding:60px 30px;
    min-height:718px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.logo-area{
    margin-bottom:40px;
}

.center-content{
    margin:auto;   /* Full center vertically */
    text-align:center;
}

.rhino-logo{
    max-height:70px;
}

.rhino-title{
    font-weight:700;
    margin-bottom:30px;
}

.rhino-oval{
    width:220px;
    height:182px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 25px 40px rgba(0,0,0,0.15);
}
.fire-card{
    background:#f1ddcf;
    padding:60px 30px;
    min-height:718px;

    display:flex;
    flex-direction:column;
    align-items:center;
}
.aerospace-card{
    background:#e2f0d9;
    padding:60px 30px;
    min-height:718px;

    display:flex;
    flex-direction:column;
    align-items:center;
}
.profile_pic{
    outline: 2px dashed #333;   /* dash border */
    outline-offset: -8px;       /* आतमध्ये */
    border-radius: 8px;
}
.mb-90{
    margin-bottom: 100px !important;
}

/*==================================================
  COMPLETE RESPONSIVE CSS
  Add at the END of agnis-style.css
===================================================*/

/* Images */
img{
    max-width:100%;
    height:auto;
}

/* Videos */
iframe,
video{
    max-width:100%;
}

/* Containers */
.container,
.container-fluid{
    width:100%;
}

/* Row */
.row{
    display:flex;
    flex-wrap:wrap;
}

/* Columns */
[class*="col-"]{
    max-width:100%;
}

/*==================================================
TABLET
===================================================*/
@media only screen and (max-width:991px){

.space{
    padding-top:60px!important;
    padding-bottom:60px!important;
}

h1{
    font-size:42px!important;
    line-height:1.2;
}

h2{
    font-size:34px!important;
}

h3{
    font-size:24px!important;
}

p{
    font-size:15px;
}

img{
    max-width:100%;
}

.feature-box.style-2{
    margin-bottom:25px;
}

.timeline-content{
    width:90%!important;
}

.timeline-container:before{
    left:35px;
}

.timeline-year{
    left:35px!important;
    transform:none!important;
}

.timeline-item{
    padding-left:80px;
}

.timeline-item-left .timeline-content,
.timeline-item-right .timeline-content{
    margin:0;
    text-align:left;
}

.timeline-item-left .timeline-content:after,
.timeline-item-right .timeline-content:after{
    display:none;
}

#section-contact .col-md-3.text-center{
    margin-bottom:20px;
}

footer{
    text-align:center;
}

}

/*==================================================
MOBILE
===================================================*/
@media only screen and (max-width:767px){

.space{
    padding-top:50px!important;
    padding-bottom:50px!important;
}

.container{
    padding-left:15px;
    padding-right:15px;
}

h1{
    font-size:32px!important;
    line-height:1.3;
}

h2{
    font-size:28px!important;
    line-height:1.3;
}

h3{
    font-size:22px!important;
}

h4{
    font-size:20px!important;
}

p{
    font-size:15px!important;
    line-height:1.8;
}

.text-center-mobile{
    text-align:center!important;
}

img{
    width:100%;
    height:auto;
}

.about-list-vertical li{
    gap:10px;
}

.feature-box.style-2{
    padding:25px 18px;
}

.feature-box.style-2 i{
    width:60px;
    height:60px;
    font-size:22px;
}

.feature-box.style-2 .text h3{
    font-size:20px!important;
}

.timeline-section{
    padding:50px 15px;
}

.timeline-container:before{
    left:30px;
}

.timeline-item{
    padding-left:70px;
}

.timeline-year{
    width:50px;
    height:50px;
    line-height:50px;
    left:30px!important;
    font-size:14px;
}

.timeline-content{
    width:100%!important;
    padding:20px!important;
}

.timeline-content h3{
    font-size:18px;
}

.timeline-content p{
    font-size:14px;
}

#section-contact .panel{
    margin-bottom:30px;
}

#section-contact .form-control{
    font-size:15px;
}

#section-contact .btn-success,
#section-contact .btn-warning{
    width:100%;
    margin-bottom:10px;
}

#section-contact .col-md-3.text-center{
    padding:20px 15px;
}

footer{
    text-align:center;
}

footer .col-md-3,
footer .col-md-4,
footer .col-md-6{
    margin-bottom:25px;
}

}

/*==================================================
SMALL MOBILE
===================================================*/
@media only screen and (max-width:480px){

.space{
    padding-top:40px!important;
    padding-bottom:40px!important;
}

h1{
    font-size:28px!important;
}

h2{
    font-size:24px!important;
}

h3{
    font-size:20px!important;
}

.feature-box.style-2{
    padding:20px 15px;
}

.feature-box.style-2 i{
    width:55px;
    height:55px;
    font-size:20px;
}

.timeline-item{
    padding-left:60px;
}

.timeline-container:before{
    left:25px;
}

.timeline-year{
    left:25px!important;
    width:45px;
    height:45px;
    line-height:45px;
}

.timeline-content{
    padding:18px!important;
}

.mb-20-h2{
    font-size:26px!important;
}

}

/*==================================================
EXTRA SMALL DEVICES
===================================================*/
@media only screen and (max-width:360px){

h1{
    font-size:24px!important;
}

h2{
    font-size:22px!important;
}

h3{
    font-size:35px!important;
}

.feature-box.style-2{
    padding:18px 12px;
}

.timeline-item{
    padding-left:55px;
}

.timeline-content{
    padding:15px!important;
}

}
.whatsapp-footer {
  position: fixed;
  left: 20px;
  bottom:20px;
 text-align: center;
  z-index: 99999; 
}


@media (max-width: 768px) {
    .whatsapp-footer {
        left: 10px;
        bottom: 10px;
    }

    .whatsapp-footer img,
    .whatsapp-footer a img {
        width: 50px;
        height: 50px;
    }
}