body {
    margin: 0;
    font-family: "Times New Roman", serif;
    background: #ffffff;
}
/* =========================================
   HERO SLIDER
========================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: min(92%, 900px);
}

.slide-content .breadcrumb {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.slide-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.arrow:hover {
  background: #ff3c2f;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Slider responsive */
@media (max-width: 768px) {
  .hero-slider { height: 300px; }
  .slide-content h1 { font-size: 28px; }
}


.contact-section {
    text-align: center;
    padding: 60px 20px;
}

.main-heading {
    font-size: 42px;
    color: #1a1a4b;
    margin-bottom: 25px;
}

.highlight-box {
    background: #f2f2f2;
    color: red;
    font-size: 22px;
    font-weight: bold;
    padding: 18px;
    margin: 0 auto 30px;
    max-width: 900px;
}

.contact-desc {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 50px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    width: 300px;
    padding: 30px 20px;
    border: 3px solid orange;
    border-radius: 20px;
    position: relative;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid orange;
    border-radius: 15px;
}

.contact-card h3 {
    color: red;
    font-size: 22px;
    margin: 15px 0 10px;
}

.contact-card p {
    font-size: 16px;
    color: #000;
}

.icon {
    font-size: 32px;
    background: #f15a29;
    color: #fff;
    width: 55px;
    height: 55px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* section second */
body{
    background:#f5f7fb;
}

.presence-section{
    padding:70px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:flex-start;
    flex-wrap:wrap;
}

/* MAP AREA */
.map-area{
    flex:1;
    text-align:center;
}

.map-area h2{
    font-size:32px;
    color:#0a145d;
    margin-bottom:25px;
}

.map-area img{
    width:100%;
    max-width:380px;
}

/* FORM AREA */
.form-area{
    flex:1;
}

.form-area h2{
    font-size:32px;
    color:#0a145d;
    margin-bottom:25px;
}

/* FORM DESIGN */
.contact-form{
    background:rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.input-group{
    position:relative;
    margin-bottom:22px;
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    padding:14px 12px;
    border:1px solid #ccc;
    border-radius:10px;
    outline:none;
    font-size:15px;
    background:#fff;
}

.input-group label{
    position:absolute;
    top:50%;
    left:14px;
    transform:translateY(-50%);
    background:#fff;
    padding:0 6px;
    color:#777;
    font-size:14px;
    pointer-events:none;
    transition:0.3s;
}

/* Floating label effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label,
.input-group select:focus + label,
.input-group select:valid + label{
    top:-8px;
    font-size:12px;
    color: #0A145D;
}

.contact-form button{
    width:100%;
    padding:14px;
    border:none;
    /* background:linear-gradient(135deg,#ff6a00,#ff9500); */
    background-color: #0A145D;
    color:#fff;
    font-size:16px;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(255,106,0,0.4);
}