/* ================= GLOBAL RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Segoe UI", sans-serif;
  background:#dcdedd;
  overflow-x:hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= HEADER ================= */

.header{
  width:100%;
  height:80px;
  background:#0b1d39;
  position:sticky;
  top:0;
  z-index:9999;
  padding: 0%;
}
@media (max-width:768px){

  .menu{
    top:80px;              /* below header */
    padding-bottom:25px;
  }

  .menu button.theme-toggle{
    margin-top:10px;
    width:fit-content;
    align-self:center;
  }

  .menu li:last-child{
    margin-bottom:10px;
  }
}
/* language settings here */
html[lang="en"] {
  direction: ltr;
}

/* Language Wrapper */
.lang-wrapper{
  display:flex;
  align-items:center;
  gap:8px;
}

/* Side Heading */
.lang-label{
  color:white;
  font-size:14px;
  font-weight:600;
}

/* Dropdown */
.lang-dropdown{
  background:#ff9f1a;
  color:#0b1d39;
  border:none;
  padding:6px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}
.nav{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 60px;
  position:relative;
}

/* LEFT - LOGO + COMPANY NAME */
.logo{
  display:flex;
 align-items: center;
 gap:14px;
}

.logo img{
  height:60px;
  width:auto;
}

.company-name{
  color:#ff9f1a;
  font-size:18px;
  font-weight:700;
  white-space: nowrap;
}

/* CENTER MENU (DESKTOP) */
.menu{
  list-style:none;
  display:flex;
  gap:25px;
  align-items:center;
}

.menu a{
  text-decoration:none;
  color:#fff;
  font-size:15px;
  padding:8px 16px;
  border-radius:20px;
  transition:0.3s;
}

.menu a:hover,
.menu a.active{
  background:#ff9f1a;
  color:#08142a;
}

/* RIGHT - LANGUAGE */
.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
}
.lang-label {
  color: white;
  font-size:14px;
}
.lang-btn{
  background:#ff9f1a;
  color:#08142a;
  border:none;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}

/* TOGGLE BUTTON */
.menu-toggle{
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}
/* ===============================
   DARK MODE (CLEAN & WORKING)
================================ */

body.dark {
  background: #020617;
  color: #e5e7eb;
}

/* HEADER */
body.dark .header {
  background: #0b1d39;
}

body.dark .menu a {
  color: #ffffff;
}

body.dark .menu a:hover,
body.dark .menu a.active {
  background: #ff9f1a;
  color: #08142a;
}

/* ABOUT HERO SECTION */
body.dark .about-hero-container {
  background: #020617;
  color: #e5e7eb;
}

body.dark .about-hero-box {
  background: linear-gradient(135deg, #1a2332, #0f1823);
}

body.dark .about-title {
  color: #ffffff;
}

body.dark .about-box {
  background: rgba(40, 80, 110, 0.5);
  color: #e5e7eb;
  border-color: #60a5fa;
}

body.dark .about-box:hover,
body.dark .about-box:focus {
  background: #ff9f1a;
  color: #020617;
}

body.dark .about-box h3 {
  color: #60a5fa;
}

body.dark .about-box h3:hover,
body.dark .about-box:hover h3 {
  color: #ffffff;
}

body.dark .about-box p {
  color: #b8c5d6;
}

/* COMPANY ABOUT SECTION */
body.dark .company-about {
  background: #0f1823;
  color: #e5e7eb;
}

body.dark .company-grid {
  background: transparent;
}

body.dark .small-title {
  color: #ff9f1a;
}

body.dark .company-content h2 {
  color: #ffffff;
}

body.dark .company-content p {
  color: #b8c5d6;
}

body.dark .about-block h3 {
  color: #60a5fa;
}

body.dark .about-block p {
  color: #b8c5d6;
}

/* SERVICES SECTION */
body.dark .services-section {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(15, 24, 35, 0.95));
  color: #e5e7eb;
}

body.dark .services-wrapper h2 {
  color: #ffffff;
}

body.dark .service-card {
  background: #1a2332;
  color: #e5e7eb;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.5);
}

body.dark .service-card h3 {
  color: #ffffff;
}

body.dark .service-card p {
  color: #b8c5d6;
}

body.dark .service-card:hover {
  background: #ff9f1a;
  color: #020617;
}

body.dark .service-card:hover h3,
body.dark .service-card:hover p {
  color: #020617;
}

/* WHY CHOOSE SECTION */
body.dark .why-choose {
  background: #0f1823;
  color: #e5e7eb;
}

body.dark .why-choose h2 {
  color: #ffffff;
}

body.dark .why-card {
  background: linear-gradient(135deg, rgba(40, 80, 110, 0.6), rgba(30, 60, 90, 0.6));
  color: #e5e7eb;
}

body.dark .why-card h3 {
  color: #ffffff;
}

body.dark .why-card p {
  color: #b8c5d6;
}

body.dark .why-card:hover {
  background: linear-gradient(135deg, rgba(60, 100, 130, 0.8), rgba(50, 80, 110, 0.8));
}

body.dark .icon-circle {
  background: #ff9f1a;
  color: #020617;
}

/* FOOTER */
body.dark .footer {
  background: #020617;
  color: #e5e7eb;
}

body.dark .footer-box {
  color: #b8c5d6;
}

body.dark .footer-box h3 {
  color: #ffffff;
}

body.dark .footer-box a {
  color: #60a5fa;
}

body.dark .footer-box a:hover {
  color: #ff9f1a;
}

body.dark .footer-bottom {
  background: #020617;
  color: #7a8999;
  border-top: 1px solid #1a2332;
}

/* MODAL */
body.dark .modal {
  background: rgba(0, 0, 0, 0.8);
}

body.dark .modal-content {
  background: #1a2332;
  color: #e5e7eb;
}

body.dark .download-btn,
body.dark .back-btn {
  background: #ff9f1a;
  color: #020617;
}

body.dark .download-btn:hover,
body.dark .back-btn:hover {
  background: #ffc857;
}

/* TOGGLE BUTTON */
.theme-toggle {
  margin-left: 25px;
  padding: 8px 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #0070ad;
  color: #fff;
  transition: all 0.3s ease;
}

body.dark .theme-toggle {
  background: #facc15;
  color: #000;
}

/* ================= MOBILE ================= */
/* Mobile lo company name hide */
@media (max-width: 768px) {
  .company-name{
    display: none;
  }
}

@media (max-width:768px){

  .menu{
    display:none;
    flex-direction:column;
    position:fixed;
    top:80px;
    left:0;
    width:100%;
    background:#0c2340;
    padding:20px;
    gap:15px;
    text-align:center;
  }

  .menu.active{
    display:flex;
  }

  .menu li{
    width:100%;
  }

  .menu a{
    display:block;
    padding:12px;
  }

  .menu-toggle{
    display:block;
    position:absolute;
    right:20px;
    top:25px;
  }

  .desktop-lang{
    display:none;
  }

  .mobile-lang{
    display:block;
    margin-top:15px;
  }
}


/* HERO CONTAINER */
.about-hero-container {
    /* ❌ min-height: 100vh;  REMOVED */
    width: 100%;
    margin: 0;
    padding: 0;  /* ✅ gives clean spacing instead of 100vh */
    color: #f1f1f1; 

    display: flex;
    align-items: stretch;

    overflow: hidden;
    box-sizing: border-box;
}

/* HERO INNER BOX */
.about-hero-box {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 30px 50px;
    background: linear-gradient(
        135deg,
        rgba(34, 81, 110, 0.85),
        rgba(32, 80, 109, 0.85)
    );
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);

    display: flex;
    flex-direction: column;
}

/* CENTER TITLE */
.about-title{
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* MAIN CONTENT FLEX */
.about-hero-content{
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* LEFT SIDE */
.about-left{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* BOX DESIGN */
.about-box{
    background: lch(100% 0.01 296.81 / 0.9);
    backdrop-filter: blur(6px);
    color: #0b2a4a;
    padding: 18px 24px;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
    box-shadow: 0 12px 25px rgba(11,42,74,0.15);
    cursor:pointer;
    transition:transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.about-box:hover,
.about-box:focus,
.about-box:focus-within{
    background:#f4b666;
    color:#ffffff;
    transform:translateX(10px);
}

/* HEADINGS */
.about-box h3{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    margin-bottom:6px;
}

/* TEXT */
.about-box p{
    font-size:15px;
    line-height:1.4;
    color:#555;
}

/* ICON */
.about-box h3 i{
    color:#0b4d7d;
    font-size:22px;
}

/* RIGHT SIDE */
.about-right{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* SLIDER (FIXED HEIGHT ISSUE HERE) */
.about-slider{
    position:relative;
    width:100%;
    height:380px;   /* ✅ removed 100vh */
    overflow:hidden;
    border-radius:20px;
}

/* SLIDER IMAGES */
.about-slider img{
    position:absolute;
    inset:0;
    width:120%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.about-slider img.active{
    opacity:1;
}

/* BUTTON */
.know-more-btn{
    margin-top:12px;
    padding:12px 36px;
    background:#f0a12b;
    color:#070404;
    border:none;
    border-radius:30px;
    font-size:18px;
    cursor:pointer;
    transition:all 0.3s ease;
    outline:none;
}

.know-more-btn:hover,
.know-more-btn:focus,
.know-more-btn:focus-visible,
.know-more-btn:active{
    background:#f4b666;
    color:#ffffff;
    box-shadow:0 8px 18px rgba(236,150,30,0.45);
    transform:translateY(-2px);
}

/* MODAL */
.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999;
}

.modal-content{
    background:#fff;
    padding:20px;
    border-radius:14px;
    max-width:800px;
    width:90%;
    text-align:center;
}

.modal-content img{
    width:100%;
    max-height:450px;
    object-fit:contain;
    border-radius:10px;
}

.modal-actions{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.download-btn,
.back-btn{
    padding:12px 28px;
    background:#0b4d7d;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:25px;
    cursor:pointer;
    transition:all 0.3s ease;
    outline:none;
}

.download-btn:hover,
.download-btn:focus,
.download-btn:focus-visible,
.download-btn:active,
.back-btn:hover,
.back-btn:focus,
.back-btn:focus-visible,
.back-btn:active{
    background:#ec961e;
    color:#ffffff;
    transform:translateY(-2px);
}

/* =========================
   SLIDER RESPONSIVE FIX
   ========================= */

@media (max-width: 1024px) {
  .about-hero-content {
    flex-direction: column;
  }

  .about-right {
    width: 100%;
  }

  .about-slider {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .about-slider {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-slider {
    height: 220px;
  }
}
/* =========================
   SLIDER RESPONSIVE FIX
   (NO EXISTING CODE CHANGED)
   ========================= */

/* Tablets & smaller screens */
@media (max-width: 1024px) {
  .about-hero-content {
    flex-direction: column;
  }

  .about-right {
    width: 100%;
  }

  .about-slider {
    width: 100%;
    height: 450px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .about-slider {
    height: 300px;
  }
}

/* Small phones (iPhone SE, older Android) */
@media (max-width: 480px) {
  .about-slider {
    height: 220px;
  }
}


/* ---------- COMPANY ABOUT ---------- */

.company-about {
  background: lab(94.11% -2.32 -7.37);
  padding: 80px 20px;
}

/* MAIN GRID */
.company-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* IMAGE SECTION */
.company-images{
  position:relative;
  width:100%;
}

/* MAIN IMAGE */
.img-main{
  width:100%;
  height:auto;
  border-radius:20px;
  display:block;
}

/* OVERLAY IMAGE */
.img-overlay {
  width:230px;
  max-width:45%;
  position:absolute;
  bottom:-40px;
  right:-40px;
  border-radius:20px;

  box-shadow:
    0 0 15px rgba(0,0,0,0.2),
    0 0 25px rgba(29,137,225,0.5);

  transition:0.3s ease;
}

.img-overlay:hover {
  box-shadow:0 0 35px rgba(221,192,46,0.8);
}

/* TEXT */
.small-title {
  color:#e67630;
  font-weight:800;
  font-size:1.25rem;
  line-height:1.4;
}

.company-content h2{
  font-size:38px;
  margin:10px 0 18px;
}

.company-content p{
  color:#475569;
  line-height:1.8;
  font-size:18px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* ===== Large Screens (Laptop 1200px+) ===== */
@media (max-width: 1200px) {

  .company-grid {
    gap: 50px;
  }

  .company-content h2 {
    font-size: 34px;
  }

}


/* ===== Tablets (1024px) ===== */
@media (max-width: 1024px) {

  .company-grid {
    grid-template-columns: 1fr;   /* stack */
    gap: 60px;
    text-align: center;
  }

  .company-images {
    max-width: 600px;
    margin: auto;
  }

  .img-overlay {
    bottom: -30px;
    right: 20px;
  }

  .company-content h2 {
    font-size: 30px;
  }

  .company-content p {
    font-size: 17px;
  }
}


/* ===== Tablets & Large Mobiles (768px) ===== */
@media (max-width: 768px) {

  .company-about {
    padding: 60px 20px;
  }

  .company-grid {
    gap: 40px;
  }

  .img-overlay {
    width: 180px;
    bottom: -20px;
    right: 15px;
  }

  .company-content h2 {
    font-size: 26px;
  }

  .company-content p {
    font-size: 16px;
  }

}


/* ===== Mobiles (480px) ===== */
@media (max-width: 480px) {

  .company-about {
    padding: 50px 15px;
  }

  .company-grid {
    gap: 35px;
  }

  .img-main {
    border-radius: 14px;
  }

  .img-overlay {
    width: 140px;
    bottom: -15px;
    right: 10px;
    border-radius: 14px;
  }

  .company-content h2 {
    font-size: 22px;
  }

  .company-content p {
    font-size: 15px;
    line-height: 1.6;
  }

}


/* ===== Very Small Devices (360px) ===== */
@media (max-width: 360px) {

  .img-overlay {
    width: 110px;
    bottom: -10px;
    right: 8px;
  }

  .company-content h2 {
    font-size: 20px;
  }

  .company-content p {
    font-size: 14px;
  }

}


/*services section */
.services-section {
  width: 100%;
  min-height: 100vh;
 background: linear-gradient(
    135deg,
    rgba(27, 70, 96, 0.85),
    rgba(25, 71, 99, 0.85)
);

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  box-sizing: border-box;
}

.services-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Heading */
.services-wrapper h2 {
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}

/* Card base */
.service-card {
  width: 260px;
  background: white;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.service-card.up {
  transform: translateY(-30px);
}

/* Image half */
.service-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Content half */
.service-content {
  padding: 28px 20px 34px;
  text-align: center;
}

.service-card h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #0b2a4a;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7a90;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-12px);
  background: #ff9800;
}

.service-card.up:hover {
  transform: translateY(-40px);
  background: #ff9800;
}

.service-card:hover h3,
.service-card:hover p,
.service-card.up:hover h3,
.service-card.up:hover p {
  color: #ffffff;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* Mobile */
@media (max-width: 768px) {
  .service-card {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  .service-card.up {
    transform: none;
  }
}

/* =========================
   RESPONSIVE FIXES
   ========================= */

/* Large tablets / small laptops */
@media (max-width: 1100px) {
  .services-wrapper {
    justify-content: center;
  }
}

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .services-wrapper {
    justify-content: center;
  }

  .service-card {
    margin-bottom: 40px;
  }
}

/* Mobile devices (phones) */
@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .services-wrapper h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-card {
    width: 90%;
    max-width: 320px;
  }

  .service-card.up {
    transform: none;
  }

  .service-card:hover,
  .service-card.up:hover {
    transform: none;
  }
}

/* Very small phones (iPhone SE, older Android) */
@media (max-width: 480px) {
  .services-wrapper h2 {
    font-size: 24px;
  }

  .service-card {
    width: 95%;
  }
}

/* ---------- WHY SECTION ---------- */

.why-choose{
   background: lab(94.11% -2.32 -7.37);
    padding:80px 20px;
    text-align:center;
}

.why-choose h2{
    font-size:38px;
    margin-bottom:50px;
    color:#0f172a;
}

.why-cards{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
   background: linear-gradient(
    135deg,
    rgba(34, 81, 110, 0.85),
    rgba(32, 80, 109, 0.85)
);
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.icon-circle{
    width:80px;
    height:80px;
    background:#f7d696;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:-60px auto 20px;
    font-size:30px;
    color:#2563eb;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.why-card h3{
    margin:15px 0;
    font-size:20px;
    color: #ffffff;
}

.why-card p{
    font-size:15px;
    color:#ede9e9;
    margin-bottom:20px;
}

.why-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:15px;
}
@media(max-width:900px){
    .why-cards{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:500px){
    .why-cards{
        grid-template-columns:1fr;
    }
}

/* mobile responisve to the footer section */
/* ================= FOOTER ================= */        
.footer{
  background:#234561;
  color:#fff;
  padding:60px 0 0;
}

.footer-wrapper{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr 1.6fr;
  gap:40px;
  padding:0 20px;
}

.footer-left-shift{
  padding-left:30px;
}

.footer-logo{
  width:280px;
  margin-bottom:15px;
}

.footer-box h3{
  margin:20px 0 12px;
}

.footer-box a{
  color:#cfd8e3;
  text-decoration:none;
}

.footer-links{
  list-style:none;
  margin-top:15px;
}

.footer-links li{
  margin-bottom:10px;
}

/* SOCIAL ICONS */
.footer-social{
  margin-top:20px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:16px;
  color:#fff;
  transition:0.3s;
}

.footer-social a:nth-child(1){background:#0b5ed7;}
.footer-social a:nth-child(2){background:#25d366;}
.footer-social a:nth-child(3){background:#e1306c;}
.footer-social a:nth-child(4){background:#6c757d;}

.footer-social a:hover{
  transform:scale(1.15);
  background:orange;
}

/* MAP */
.large-map iframe{
  width:100%;
  height:320px;
  border-radius:16px;
  border:none;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

/* FOOTER BOTTOM */
.footer-bottom{
  margin-top:50px;
  padding:15px;
  text-align:center;
  background:#071a30;
  font-size:14px;
  color:#cfd8e3;
}

/* ========================================= */
/*              FOOTER RESPONSIVE            */
/* ========================================= */

/* 📱 MOBILE (max 576px) */
@media (max-width:576px){

  footer{
    padding:50px 0 0;
  }

  .footer-wrapper{
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;
    padding:0 16px;
  }

  .footer-left-shift{
    padding-left:0;
  }

  .footer-logo{
    width:200px;
    margin:0 auto 15px;
    display:block;
  }

  .footer-box h3{
    font-size:18px;
  }

  .footer-links li{
    margin-bottom:8px;
  }

  .footer-social{
    justify-content:center;
    margin-top:15px;
  }

  .large-map iframe{
    height:250px;
    border-radius:12px;
  }

  .footer-bottom{
    font-size:13px;
    padding:12px;
  }
}


/* 📱 TABLET (577px – 992px) */
@media (min-width:577px) and (max-width:992px){

  .footer-wrapper{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }

  .footer-left-shift{
    padding-left:0;
  }

  .footer-logo{
    width:230px;
  }

  .large-map{
    grid-column:1 / -1;   /* map full width */
  }

  .large-map iframe{
    height:280px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width:993px) and (max-width:1200px){

  .footer-wrapper{
    grid-template-columns:1.2fr 1fr 1.4fr;
    gap:35px;
  }

  .footer-logo{
    width:250px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width:1200px){

  .footer-wrapper{
    max-width:1400px;
  }

  .footer-logo{
    width:280px;
  }
}
/* mobile responisve to the footer section end here */