:root {
  /* Fonts */
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Colors */
  --background-color: #ffffff;
  --default-color: #4e4e4e;
  --heading-color: #0a090f;
  --accent-color: #7399cb;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Navigation */
  --nav-color: #ffffff;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #7399cb;

  /* scroll */
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*---- Header----*/
.header {
  --background-color: #fff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 6px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-width: 100px;
  width: 100%;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* ==== NAVIGATION  ===== */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu a {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-transform: none;
    color: #232222;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    display: block;
    letter-spacing: 0px;
    text-rendering: optimizeLegibility;
  }

  .navmenu ul li a {
    position: relative;
    text-decoration: none !important;
    transition: 0.3s;
  }

  .navmenu ul li a:hover {
    color: #7399cb !important;
  }

  .navmenu ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #7399cb;
    transition: width 0.3s ease;
  }

  .navmenu ul li a:hover::after {
    width: 100%;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .navmenu ul {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    position: static;
    background: transparent;
  }

  .navmenu ul li {
    display: inline-block;
    padding: 0;
  }

  .navmenu ul li a {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    text-transform: none;
    color: #232222;
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    display: block;
    letter-spacing: 0px;
    text-rendering: optimizeLegibility;
  }

  .mobile-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 9999;
    margin-left: auto;
    margin-bottom: 0 !important;
  }

  .mobile-nav-toggle span {
    display: block !important;
    position: absolute !important;
    height: 4px !important;
    width: 100%;
    background: #7399cb;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
    left: 0;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffffde;
    padding: 40px 30px;
    list-style: none;
    margin: 0;
    z-index: 9998;
  }

  .navmenu ul li {
    margin-bottom: 30px;
  }

  .navmenu ul li a {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-transform: none;
    color: #232222;
    padding-bottom: 12px;
    position: relative;
    display: block;
    letter-spacing: 0px;
    text-rendering: optimizeLegibility;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }

  .mobile-nav-active .mobile-nav-toggle span {
    background: #7399cb;
  }

  .mobile-nav-toggle span:nth-child(1) {
    top: 6px;
  }
  .mobile-nav-toggle span:nth-child(2) {
    top: 14px;
  }
  .mobile-nav-toggle span:nth-child(3) {
    top: 22px;
  }

  .mobile-nav-active .mobile-nav-toggle span:nth-child(1) {
    top: 14px !important;
    transform: rotate(45deg);
  }

  .mobile-nav-active .mobile-nav-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  .mobile-nav-active .mobile-nav-toggle span:nth-child(3) {
    top: 14px !important;
    transform: rotate(-45deg);
  }
}

/*---- Preloader ----*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  color: #7399cb;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #7399cb;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*---- Scroll Top Button ----*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*---- Disable aos animation delay on mobile devices ----*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*----Global Sections ----*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*---- # Hero Section-----*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

#hero .container {
  height: 100%;
  position: relative;
}

.hero-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.left {
  width: 27%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  z-index: 2;
}

.right {
  width: 100%;
  height: 100%;
  padding-left: 27%;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}
.slide-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* SAME LOOK jaise pehle tha */
  object-position: center;
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 5;
}

.hero-content h1 {
  font-size: 120px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
  line-height: 1.1;
}

.stroke {
  -webkit-text-stroke: 1px black;
  color: transparent;
}

.hero-content p {
  margin-top: 10px;
}

.line_wrapper {
  width: 1px;
  height: 40px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.line {
  width: 100%;
  height: 100%;
  background: transparent;
  position: relative;
}

.line::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 30px;
  background: #000;

  animation: smoothLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes smoothLine {
  0% {
    top: 0%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0%;
  }
}

@media (max-width: 1200px) {
  .left {
    display: none;
  }
  .right {
    padding-left: 0;
  }
  .hero-content h1 {
    font-size: 90px;
  }
}

@media (max-width: 1140px) {
  .hero-content {
    top: 70%;
    left: 1.5%;
  }

  .hero-content h1 {
    font-size: 40px;
    font-weight: 900;
  }

  .hero-content .hero-intro {
    background-color: #fff;
    padding: 5px 10px;
  }

  .hero-content p {
    margin: 3px;
  }

  .line_wrapper {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .hero-content {
    top: 70%;
    left: 2%;
  }
}

@media (max-width: 576px) {
  .hero-content {
    top: 70%;
    left: 3%;
  }
}

@media (max-width: 375px) {
  .hero-content {
    top: 70%;
    left: 3%;
  }
}

/*==== About Section ====*/
.about .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.about.section {
  padding: 60px 0;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  border: 2px solid #fff;
  border-radius: 10px !important;
}

.about-row {
  gap: 0;
}

.about-img-col {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  padding: 0 !important;
}

.about-img-col .profile-img {
  transition: transform 0.8s ease;
  width: 100%;
}

.about-img-col:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-img-col:hover .profile-img {
  transform: scale(1.1);
}

.about-text-col {
  padding-left: 50px !important;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.about-title span {
  color: #e67e22;
}

.about-hr {
  border: none;
  height: 4px;
  background: #e67e22;
  width: 70px;
  margin: 20px 0;
  opacity: 1;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .about-text-col {
    padding-left: 15px !important;
    text-align: center;
    margin-top: 30px;
  }

  .about-img-col {
    max-width: 85%;
    margin: 0 auto;
  }

  .about-hr {
    margin: 20px auto;
  }

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

.about.section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.premium-header {
  position: relative;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}

.premium-header::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 130px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.2);
  z-index: 1;
  letter-spacing: 8px;
  text-transform: uppercase;
  pointer-events: none;
}

.about-name {
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: 900;
  color: #000;
  margin: 0;
  margin-top: 32px;
  text-transform: uppercase;
  line-height: 1.2;
}

.about-text-col {
  padding-left: 50px !important;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .about-text-col {
    padding-left: 15px !important;
    text-align: center;
    margin-top: 50px;
  }
  .premium-header {
    align-items: center;
  }
  .premium-header::after {
    font-size: 85px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .accent-line {
    margin: 10px auto 0 auto;
  }
  .about-name {
    font-size: 38px;
  }
}

/*===Vision Mission===*/
.back-text {
  margin-bottom: 70px !important;
}

.vision-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.vision-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

.vision-cards-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.vision-card {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  padding: 50px 40px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  text-align: center;
}

.vision-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(102, 102, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin: 0 auto 25px auto;
  transition: all 0.4s ease;
}

.vision-icon-box i {
  font-size: 30px;
  color: #000;
  transition: all 0.4s ease;
}

.vision-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: #000;
}

.vision-card:hover .vision-icon-box {
  background: #000;
}

.vision-card:hover .vision-icon-box i {
  color: #fff;
  transform: scale(1.1);
}

.vision-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.vision-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Mobile responsive alignment */
@media (max-width: 768px) {
  .vision-header {
    align-items: center;
    text-align: center;
  }
}

/*====Hobbies section====*/
.hobbies-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.hobbies-intro {
  max-width: 750px;
  font-size: 17px;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.7;
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.hobby-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hobby-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(102, 102, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.hobby-icon-box i {
  font-size: 28px;
  color: #666;
  transition: all 0.4s ease;
}

.hobby-card:hover {
  transform: translateY(-10px);
  border-color: #000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.hobby-card:hover .hobby-icon-box {
  background: #000;
}

.hobby-card:hover .hobby-icon-box i {
  color: #fff;
  transform: rotateY(180deg);
}

.hobby-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.hobby-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #777;
  margin: 0;
}

/* Mobile Responsive adjustment */
@media (max-width: 991px) {
  .hobby-card {
    text-align: center;
  }

  .hobby-icon-box {
    margin: 0 auto 25px auto;
  }
}

/*==== Favourites Section ====*/
.favourites-section {
  padding: 60px 0;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.fav-item-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.fav-item-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.fav-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fav-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.fav-content span {
  color: gray;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fav-content h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 0;
}

.fav-item-wrapper:hover img {
  transform: scale(1.1);
}

.fav-item-wrapper:hover .fav-overlay {
  opacity: 1;
}

.fav-item-wrapper:hover .fav-content {
  transform: translateY(0);
}

.fav-item-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 1;
}

.fav-item-wrapper:hover::before {
  left: 125%;
}

@media (max-width: 768px) {
  .fav-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .fav-content {
    transform: translateY(0);
  }
}

/*=== Party Videos=== */
.video-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.main-video-wrapper {
  max-width: 900px;
  margin: 0 auto 60px auto;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.main-video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(200, 200, 200, 0.2);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.video-grid-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.video-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1;
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-card .v-info {
  padding: 15px 5px 5px;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .video-grid-row {
    flex-direction: column;
    align-items: center;
  }
  .video-card {
    width: 100%;
  }
  .main-video-wrapper {
    width: 95%;
  }
}

/* product-Section */
.products-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.ignite-header {
  margin-bottom: 50px;
}

.main-title {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.sub-title {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}


.product-label {
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #7399cb;
  color: #fff !important;
  border-radius: 50%;
  transform: scale(0.6);
}

.productSwiper .swiper-button-next::after,
.productSwiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}


.swiper-slide {
  padding-bottom: 40px;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;

  z-index: 2;
}

.product-overlay h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #ccc; 
}


.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: 0.4s;
}


.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover::after {
  opacity: 1;
}


/*=== Footer ===*/
#footer {
  padding: 60px 0 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #f2f2f2; /* Ye rahi aapki single main line */
}

.footer-top-logo {
  text-align: left;
  margin-bottom: 40px;
}

.f-logo {
  max-width: 180px;
  height: auto;
  display: inline-block;
}

.footer-fixed-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.footer-col {
  flex: 1;
  min-width: 0;
}

.f-title {
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.f-address p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.f-links {
  list-style: none;
  padding: 0;
}

.f-links li {
  margin-bottom: 10px;
}

.f-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  color: #555;
  transition: 0.3s ease;
}


.f-links a:hover {
  color: #7399cb;
  transition: 0.3s ease;

  transform: translateX(-5px); /* upar halka move */
}

.social-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 150px;
}

.social-icon-grid a {
  font-size: 22px;
  color: #333;
}

.social-icon-grid a:hover{
  color: #7399cb;
  transition: 0.3s ease;
  transform: translateY(-5px); 
}

.footer-bottom{
  text-align: center;
}

.footer-divider, .footer-bottom {
  border: none !important;
}


@media (max-width: 1200px) {
  .footer-top-logo {
    padding-left: 80px;
  }
}

@media (max-width: 799px) {
  .footer-top-logo {
    padding-left: 0;
    text-align: center;
  }
}

/*==== Responsive Sequence ====*/
@media (max-width: 799px) {

  #footer {
    padding: 50px 15px;
  }


  .footer-top-logo {
    grid-column: span 2;            
    display: flex;
    justify-content: center;        
    align-items: center;
    margin-bottom: 25px;
    padding-left: 0 !important;
  }

  .footer-content{
    display: none;
  }


  .f-logo {
    max-width: 180px;
    margin-bottom: 60px;
  }

  .footer-fixed-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    text-align: left;
  }

  .brand-col {
    grid-column: span 2;
    text-align: start;
  }

  .brand-col .f-address {
    text-align: start;
  }

  
  .f-title {
    font-size: 21px;
  }

  .f-links a,
  .f-address p {
    font-size: 16px;
  }

  .social-col {
    grid-column: span 2;
    align-items: center;
  }

  .social-icon-grid {
    justify-content: center;
    display: flex;
    gap: 20px;
  }
}

.footer-top-logo {
  padding-left: 0;
  margin-left: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}