/* Theme Colors */
:root{
    --primary:#ff9800;
    --dark:#041633;
	--secondary-color: #ff8800;
}

/* :root{
    --primary-color: #ff8800;
    --secondary-color: #222222;
    --text-color: #666666;
} */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
	background:#f5f7fa;
    color:#111;
}
.btn:hover{
    background:#ff8800;
    border-color:#ff8800;
    color:#fff;
}
.btn-outline-light{}

.navbar{
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(8px);
}

.navbar-brand{
    color:#fff;
    font-size:32px;
}

.navbar-brand span{
    color:var(--primary);
}
nav.navbar ul{
    list-style:none;
}

nav.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

nav.navbar ul li a:hover{
    color:#ff8800;
}
nav.navbar ul li ul li a{
    color:#333;
}
nav.navbar ul li ul li a{
    color:#444;
}

.logo{
    color:#fff;
}

.logo h1{
    font-size:38px;
    font-weight:800;
}

.logo h1 span{
    color:#ff8800;
}

.logo p{
    font-size:12px;
    letter-spacing:1px;
}

.hero{
    background:url('../images/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:70px;
    color:#fff;
    font-weight:800;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    color:#fff;
    font-size:24px;
}
.hero-btn{
    display:inline-block;
    border:2px solid #fff;
    padding:16px 35px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
	background:none;
}

.hero-btn:hover{
    background:#ff8800;
    border-color:#ff8800;
	color:#fff;
}
.small-title{
    color:var(--primary);
    font-weight:600;
}

/* ABOUT */

/* .about{
    padding:90px 7%;
    background:#f6f8fb;
} */

/* .about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
} */

.about-content h2, .contact-wrap h2{
    font-size:35px;
    color:#0a1c44;
    margin-bottom:25px;
    line-height:1.2;
	font-weight:800;
}
.about-content p{
    color:#555;
    line-height:2;
    margin-bottom:30px;
}
.about-btn{
    display:inline-block;
    background:#0a1c44;
    color:#fff;
    padding:14px 28px;
    text-decoration:none;
}
 .about-us h1 {
	font-size: 35px;
    color: #0a1c44;
    font-weight: 800;
 }
 
 .about-us.bg-secondary{
	background-color:#C0C0C0!important;
}

/* Section Label */
.osmat-section-label{
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Main Heading */
.osmat-heading{
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Sub Heading */
.osmat-subheading{
    color: var(--secondary-color);
    line-height: 1.4;
    margin-bottom: 12px;
	font-weight:600;
}

/* Paragraph */
.osmat-text{
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.bg-primary.osmat-bg{
	background:#ff8800!important;
    color:#fff!important;
}

/* .stat-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
} */

.stats{
      margin:auto;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
}

/* .stats-section{
      max-width:900px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    } */

.stats-section{
    padding: 90px 0;
    padding: 90px 0;
    background: #f6f8fb;
}
.stat-box{
      background:#fff;
      border:1px solid #ddd;
      border-radius:4px;
      padding:30px 25px;
      display:flex;
      align-items:center;
      gap:20px;
      transition:0.3s;
}
.stat-box:hover{
      transform:translateY(-3px);
      box-shadow:0 5px 15px rgba(0,0,0,0.08);
}
.stat-icon{
      font-size:42px;
      color:#ff7a00;
      min-width:50px;
      text-align:center;
}

.stat-content h2{
      font-size:26px;
      color:#0b1b3f;
      margin-bottom:5px;
      font-weight:700;
}

.stat-content p{
      color:#333;
      font-size:14px;
    }

.company-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.company-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.5s;
}

.company-card:hover img{
    transform:scale(1.1);
}

.company-card .overlay{
    position:absolute;
    inset:0;
    padding:30px;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.9),
    rgba(0,0,0,.1));
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:end;
}
.company-card .overlay h3 span{
    font-size:14px;
    margin-top:0;
	display:grid;
}

/* SECTION TITLE */

.companies{
    text-align:center;
    margin-bottom:60px;
}
.companies h2{
    color:#ff8800;
    font-weight:600;
    margin-bottom:10px;
	font-size:16px;
}
.companies h6{
	font-size:35px;
    color:#0a1c44;
    font-weight:800;
}
.values{
    background:#03122b;
    color:#fff;
    padding:80px 0;
}

.values i{
    font-size:40px;
    color:var(--primary);
    margin-bottom:15px;
}


/* ===== VALUES SECTION ===== */
.values-section{
    background:linear-gradient(to right,#081b35,#0a2348);
    padding:50px 0;
}


.values-title{
    text-align:center;
    color:#ff9c1a;
    font-size:16px;
    font-weight:bold;
    margin-bottom:35px;
    letter-spacing:1px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
}

.value-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.icon{
    font-size:38px;
    line-height:1;
	color:#fff;
}

.value-box h3{
    font-size:18px;
    margin-bottom:10px;
	color:#fff;
}

.value-box p{
    font-size:14px;
    line-height:1.6;
    color:#d2d7df;
}


.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
}

.jumbotron {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(http://localhost/osmatindia/assets/images/header.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ===== FOOTER ===== */

.footer {
  background: #050f1f;
}

.footer .left-border {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-box p {
  margin-top: 15px;
  line-height: 1.8;
  color: #d3d7de;
  font-size: 14px;
}

.footer-box h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

.footer-box ul {
  list-style: none;
  padding-left: 0;
}

.footer-box ul li {
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
}

.footer-box ul li a {
  color: #d3d7de;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff8c00;
}

/* Bottom Footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 0 0;
  color: #c7cbd3;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #c7cbd3;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff8c00;
}

.logo {
  font-size: 30px;
  font-weight: 800;
}

.logo span {
  color: #ff8c00;
}

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff8c00;
  border-color: #ff8c00;
}

.contact-info li {
  line-height: 1.8;
}

/* Newsletter */
.newsletter{
    display:flex;
    margin-top:20px;
}

.newsletter input{
    width:100%;
    padding:14px;
    border:none;
    outline:none;
    background:#0d1c33;
    color:#fff;
}

.newsletter button{
    width:60px;
    border:none;
    background:#ff8c00;
    color:#fff;
    cursor:pointer;
    font-size:18px;
}
@media(max-width:991px){

.hero h1{
    font-size:48px;
}

.hero p{
    font-size:18px;
}

.company-card img{
    height:350px;
}

}

@media(max-width:576px){

.hero h1{
    font-size:38px;
}

.navbar-brand{
    font-size:24px;
}

}
    .card-left {
      background: #fff;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 6px 20px rgba(12, 40, 80, 0.06);
    }

    .card-right {
      background: linear-gradient(180deg,#0d2a4b 0%, #12345f 100%);
      color: #fff;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 10px 30px rgba(13,42,75,0.18);
      min-height: 100%;
    }

    .contact-title {
      font-weight: 700;
      font-size: 20px;
      color: #0b2b4a;
    }

    .lead-text {
      color: #6b7280;
      font-size: 14px;
      margin-bottom: 18px;
    }

    /* Inputs rounded */
    .form-control {
      border-radius: 5px;
      padding: 12px 18px;
      border: 1px solid #e6eef8;
      background: #fbfcff;
    }

    .form-control:focus {
      box-shadow: 0 0 0 4px rgba(13, 66, 128, 0.06);
      border-color: #2b6cb0;
    }

    .textarea-custom {
      min-height: 110px;
      border-radius: 5px;
      padding: 14px 16px;
    }

    .btn-send {
      background: linear-gradient(90deg,#0f2c55,#163d6e);
      color: #fff;
      border-radius: 5px;
      padding: 10px 26px;
      border: none;
    }

    .btn-send:hover {
      filter: brightness(1.05);
    }

    /* Right card details */
    .contact-card .h5 {
      font-weight: 700;
      color: #eef8ff;
    }

    .info-box {
      background: rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 12px;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .info-box i {
      background: rgba(255,255,255,0.08);
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 16px;
    }

    .info-text small {
      color: #bcd7f6;
      display: block;
      font-size: 12px;
    }

    .socials a {
      color: #dceeff;
      margin-right: 10px;
      font-size: 18px;
      display: inline-flex;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(255,255,255,0.03);
      text-decoration: none;
    }

.career-section{
    background:#f5f5f5;
}

.career-title{
    font-size: 28px;
    color: #0a1c44;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.career-text{
    font-size:16px;
    line-height:2;
    color:#222;
}

.career-input{
    height:58px;
    border:1px solid #ddd;
    border-radius:2px;
    padding:12px 15px;
    font-size:16px;
}

.career-input:focus{
    box-shadow:none;
    border-color:#005da8;
}

textarea.career-input{
    height:200px;
    resize:none;
    padding-top:15px;
}

.career-section .btn-submit{
    background:#083d6b;
    color:#fff;
    padding:12px 35px;
    border-radius:3px;
    font-weight:600;
    min-width:110px;
}

.career-section .btn-submit:hover{
    background:#062f52;
    color:#fff;
}

@media (max-width:991px){

    .career-title{
        font-size:32px;
    }

    .career-text{
        font-size:16px;
        line-height:1.8;
    }
}
h1{}