body {
  font-family: "Segoe UI", sans-serif;
}

/* ===== LOGO ===== */
.navbar-brand .logo-Eurika {
  width: 190px;
  height: auto;
  margin-left: -18px;
}



#navMenu {
  margin-right: -20px;
}


/* ===== NAVBAR ===== */
.main-nav {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid orangered;
}

/* ===== NAV LINKS ===== */
.nav-link {
  position: relative;
  transition: 0.3s;
  font-weight: 600;
  font-size: 17px;
  color: orangered;
  display: inline-block;
}

.nav-item:hover {
  cursor: pointer;
}

/* TOP LINE ON HOVER */
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #0272b3;
  transition: 0.3s;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: #0272b3;
}

/* ===== DROPDOWN MENU ===== */
.nav-item.dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  display: none;
  margin-top: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 180px;
}

.dropdown-menu li a {
  color: orangered;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 20px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}

/* TOP LINE ON DROPDOWN ITEMS */
.dropdown-menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #0272b3;
  transition: 0.3s;
}

.dropdown-menu li a:hover::before {
  width: 100%;
}

.dropdown-menu li a:hover {
  color: #0272b3;
  background: rgba(255, 255, 255, 0.2);
}

/* REMOVE DROPDOWN ICON */
.navbar-nav .dropdown-toggle::after {
  display: none;
}

/* SHOW DROPDOWN ON MOBILE WHEN .show CLASS ADDED */
.nav-item.dropdown.show>.dropdown-menu {
  display: block !important;
}

/* REMOVE BOTTOM LINE ON DROPDOWN ITEMS */
.dropdown-menu li a {
  text-decoration: none;
  /* remove underline */
  border-bottom: none;
  /* remove any bottom border */
}

.dropdown-menu li a:hover::before {
  width: 100%;
  /* only top line will show */
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #0272b3;
}

/* SHOW DROPDOWN ON HOVER */
.nav-item.dropdown:hover>.dropdown-menu {
  display: block;
}

.nav-item.dropdown.show>.dropdown-menu {
  display: block !important;
  /* mobile pe JS toggle ke liye */
}


.btn-danger {
  background: orangered;
  border: none;
  border-radius: 40px;
  align-items: center;
  font-weight: 500;
}


/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .navbar-nav {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
  }

  .nav-item.dropdown:hover>.dropdown-menu {
    display: none;
    /* disable hover on mobile */
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
  }
}

@media(max-width:768px) {
  .navbar-brand .logo-Eurika {
    margin-left: 0;
    width: 140px;
  }

  #navMenu {
    margin-right: 0;
  }
}

@media(max-width:992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: none;
    /* disable hover on mobile */
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
  }
}

.nav-item.dropdown.show>.dropdown-menu {
  display: block !important;
}


/* ===== SUB DROPDOWN ===== */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  display: none;
}

/* Hover show */
.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

/* Arrow spacing fix */
.dropdown-submenu>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile fix */
@media (max-width: 992px) {
  .dropdown-submenu>.dropdown-menu {
    position: static;
    display: none;
  }

  .dropdown-submenu.show>.dropdown-menu {
    display: block;
  }
}










/* HERO */
.hero {
  position: relative;
  height: 80vh;
  background: #138D9A;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CANVAS */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;

  width: 90%;          /* ✅ same width */
  max-width: 1300px;   /* ✅ portfolio style */
  margin: auto;
}

/* TEXT */
.hero h1 {
  font-size: clamp(2rem, 6vw, 80px);
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }

  .hero-content {
    padding: 10px;
  }

  .hero h1 {
    font-size: 36px;
  }
}








/* /////////////////////////////////////////////about section  */

/* SECTION */
.multi-section {
  padding: 100px 5%;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}

/* CONTAINER */
.multi-container123123 {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.multi-left {
  flex: 1;
}

.multi-left h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 15px;
}

.multi-left p {
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 🔥 NEW BUTTON STYLE */
.service-btn {
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

/* HOVER */
.service-btn:hover {
  background: orangered;
  border-color: orangered;
  transform: translateY(-3px);
}

/* RIGHT SIDE */
.multi-right {
  flex: 1;
  position: relative;
  height: 400px;
}

/* CIRCLES */
.circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* POSITIONS */
.img1 {
  width: 260px;
  height: 260px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.img2 {
  width: 200px;
  height: 200px;
  bottom: 0;
  left: 10%;
}

.img3 {
  width: 160px;
  height: 160px;
  bottom: 20px;
  right: 10%;
}

/* ========================= */
/* TABLET */
@media (max-width: 992px) {
  .multi-container123123 {
    flex-direction: column;
    text-align: center;
  }

  .multi-right {
    height: 350px;
  }
}

/* ========================= */
/* MOBILE */
@media (max-width: 768px) {
  .multi-section {
    padding: 70px 20px;
  }

  .multi-right {
    height: auto;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .circle {
    position: relative;
    width: 30%;
    height: 120px;
  }

  .btn-group {
    justify-content: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .service-btn {
    width: 100%;
    text-align: center;
  }
}













        /* ===============================
GLOBAL
=============================== */


        section {
            padding: 100px 20px;
        }

        img {
            max-width: 100%;
            display: block;
            border-radius: 20px;
        }

        h2 {
            font-size: 34px;
            margin-bottom: 15px;
        }

        p {
            line-height: 1.8;
            color: #555;
        }

        .container1 {
            max-width: 1300px;
            margin: auto;
        }

        /* ===============================
BRAND SECTION
=============================== */

        .brand-section {
            position: relative;
            background: linear-gradient(270deg, #ffffff, #eef2ff, #ffffff);
            background-size: 600% 600%;
            animation: bgMove 10s ease infinite;
            overflow: hidden;
        }

        .brand-container1 {
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .brand-image,
        .brand-text {
            flex: 1;
            min-width: 300px;
        }

        .brand-image img {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: 0.4s;
        }

        .brand-image img:hover {
            transform: scale(1.05);
        }

        .float-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.2;
            animation: float 6s infinite ease-in-out;
        }

        .float1 {
            width: 120px;
            height: 120px;
            background: #6c7cff;
            top: 20%;
            left: 10%;
        }

        .float2 {
            width: 90px;
            height: 90px;
            background: #ff7b7b;
            bottom: 15%;
            right: 15%;
        }

        .float3 {
            width: 70px;
            height: 70px;
            background: #7cffb2;
            top: 60%;
            left: 50%;
        }


        /* ===============================
SERVICES SECTION
=============================== */

        .services-section {
            position: relative;
            background: #000;
            overflow: hidden;
            padding: 100px 20px;
        }

        /* DOT BACKGROUND */

        .services-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
            background-size: 40px 40px;
            animation: moveDots 20s linear infinite;
            z-index: 0;
        }

        /* CONTENT */

        .services-container2 {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .services-left,
        .services-right {
            flex: 1;
            min-width: 300px;
            color: #fff;
        }

        .description {
            line-height: 1.8;
            color:  white;
        } 

        /* IMAGE */

        .services-right img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: 0.4s;
        }

        .services-right img:hover {
            transform: scale(1.05);
        }

        /* DOT ANIMATION */

        @keyframes moveDots {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-100px, -100px);
            }
        }

        /* RESPONSIVE */

        @media(max-width:900px) {

            .services-container2 {
                flex-direction: column;
                text-align: center;
            }

            .services-right img {
                width: 90%;
                margin: auto;
            }

        }



        /* ===============================
APP SECTION
=============================== */

        .app-section {
            background: #f7f7f7;
        }

        .app-container3 {
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .app-image,
        .app-content {
            flex: 1;
            min-width: 300px;
        }

        .app-image img {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: 0.4s;
        }

        .app-image img:hover {
            transform: scale(1.05);
        }

        /* ===============================
VIDEO SECTION
=============================== */

        .video-section {
            position: relative;
            padding: 100px 20px;
            background: #000;
            overflow: hidden;
        }

        /* TRIANGLE SHAPES */

        .video-section span {
            position: absolute;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 35px solid rgba(249, 245, 245, 0.983);
            animation: triangleMove 10s linear infinite;
        }

        /* RANDOM TRIANGLE POSITIONS */

        .video-section span:nth-child(1) {
            left: 10%;
            top: 90%;
            animation-duration: 12s;
        }

        .video-section span:nth-child(2) {
            left: 35%;
            top: 95%;
            animation-duration: 9s;
        }

        .video-section span:nth-child(3) {
            left: 60%;
            top: 85%;
            animation-duration: 11s;
        }

        .video-section span:nth-child(4) {
            left: 80%;
            top: 92%;
            animation-duration: 10s;
        }

        /* TRIANGLE FLOAT ANIMATION */

        @keyframes triangleMove {

            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                transform: translateY(-900px) rotate(360deg);
                opacity: 0;
            }

        }

        /* ===============================
CONTAINER
=============================== */

        .video-container4 {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        /* TEXT + IMAGE */

        .video-text,
        .video-image {
            flex: 1;
            min-width: 300px;
        }

        /* TEXT STYLE */

        .video-text {
            color: #fff;
        }

        .video-title {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .video-subtitle {
            font-size: 26px;
            margin-bottom: 15px;
            color: #bbb;
        }

        .video-description {
            line-height: 1.8;
            color: #ddd;
        }

        /* IMAGE */

        .video-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: 0.4s;
        }

        .video-image img:hover {
            transform: scale(1.05);
        }

        /* ===============================
FADE ANIMATION
=============================== */

        .fade {
            opacity: 0;
            animation: fadeUp 1s forwards;
        }

        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /* ===============================
RESPONSIVE
=============================== */

        @media(max-width:900px) {

            .video-container4 {
                flex-direction: column;
                text-align: center;
            }

            .video-title {
                font-size: 28px;
            }

            .video-subtitle {
                font-size: 22px;
            }

            .video-image img {
                width: 90%;
                margin: auto;
            }

        }


        

        /* ===============================
DIGITAL MARKETING SECTION
=============================== */

        .dm-section {
            background: #f9f9f9;
        }

        .dm-container5 {
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .dm-image,
        .dm-text {
            flex: 1;
            min-width: 300px;
        }

        .dm-image img {
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
            transition: 0.4s;
        }

        .dm-image img:hover {
            transform: scale(1.05);
        }

        /* ===============================
UI UX SECTION
=============================== */

        .uiux-section {
            position: relative;
            background: #000;
            padding: 100px 20px;
            overflow: hidden;
        }

        /* DOT BACKGROUND ANIMATION */

        .uiux-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 2px);
            background-size: 40px 40px;
            animation: moveDots 20s linear infinite;
            z-index: 0;
        }

        /* CONTAINER */

        .uiux-container6 {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        /* TEXT + IMAGE */

        .uiux-text,
        .uiux-image {
            flex: 1;
            min-width: 300px;
        }

        /* TEXT STYLE */

        .uiux-title {
            font-size: 36px;
            margin-bottom: 15px;
            color: #fff;
        }

        .uiux-subtitle {
            font-size: 26px;
            margin-bottom: 15px;
            color: #bbb;
        }

        .uiux-description {
            font-size: 16px;
            line-height: 1.8;
            color: #ddd;
        }

        /* IMAGE STYLE */

        .uiux-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transition: 0.4s;
        }

        .uiux-image img:hover {
            transform: scale(1.05);
        }

        /* DOT ANIMATION */

        @keyframes moveDots {

            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-120px, -120px);
            }

        }

        /* ===============================
FADE ANIMATION
=============================== */

        .fade {
            opacity: 0;
            animation: fadeUp 1s forwards;
        }

        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /* ===============================
RESPONSIVE
=============================== */

        @media(max-width:900px) {

            .uiux-container6 {
                flex-direction: column;
                text-align: center;
            }

            .uiux-title {
                font-size: 28px;
            }

            .uiux-subtitle {
                font-size: 22px;
            }

            .uiux-image img {
                width: 90%;
                margin: auto;
            }

        }

        /* ===============================
OVERLAY SECTION
=============================== */

        .overlay-section {
            position: relative;
            background: white;
            padding: 100px 20px;
            overflow: hidden;
        }

        /* CONTAINER */

        .overlay-container7 {
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        /* IMAGE + TEXT */

        .overlay-image,
        .overlay-text {
            flex: 1;
            min-width: 300px;
        }

        /* IMAGE */

        .overlay-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transition: 0.4s;
        }

        .overlay-image img:hover {
            transform: scale(1.05);
        }

        /* TEXT */

        .overlay-text {
            color: #000000;
        }

        .overlay-title {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .overlay-subtitle {
            font-size: 24px;
            margin-bottom: 15px;
            color: #000000;
        }

        .overlay-description {
            line-height: 1.8;
            color: #000000;
        }

        /* FADE ANIMATION */

        .fade {
            opacity: 0;
            animation: fadeUp 1s forwards;
        }

        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /* RESPONSIVE */

        @media(max-width:900px) {

            .overlay-container7 {
                flex-direction: column;
                text-align: center;
            }

            .overlay-title {
                font-size: 28px;
            }

            .overlay-subtitle {
                font-size: 22px;
            }

            .overlay-image img {
                width: 90%;
                margin: auto;
            }

        }




        /* ===============================
APP UI UX SECTION
=============================== */

        .appui-section {
            position: relative;
            background: #000;
            padding: 100px 20px;
            overflow: hidden;
        }

        /* DOT BACKGROUND */

        .appui-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 2px);
            background-size: 40px 40px;
            animation: dotMove 20s linear infinite;
            z-index: 0;
        }

        /* CONTAINER */

        .appui-container8 {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        /* TEXT + IMAGE */

        .appui-text,
        .appui-image {
            flex: 1;
            min-width: 300px;
        }

        /* TEXT */

        .appui-text {
            color: #fff;
        }

        .appui-title {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .appui-subtitle {
            font-size: 24px;
            margin-bottom: 15px;
            color: #bbb;
        }

        .appui-description {
            line-height: 1.8;
            color: #ddd;
        }

        /* IMAGE */

        .appui-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transition: 0.4s;
        }

        .appui-image img:hover {
            transform: scale(1.05);
        }

        /* DOT ANIMATION */

        @keyframes dotMove {

            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(-120px, -120px);
            }

        }

        /* FADE ANIMATION */

        .fade {
            opacity: 0;
            animation: fadeUp 1s forwards;
        }

        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /* RESPONSIVE */

        @media(max-width:900px) {

            .appui-container8 {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .appui-title {
                font-size: 28px;
            }

            .appui-subtitle {
                font-size: 22px;
            }

            .appui-image img {
                width: 90%;
                margin: auto;
            }

        }















/* MAIN WRAPPER */
.t-wrap{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.t-center{
  text-align:center;
}

.t-section{
  padding:80px 0;
}

.t-small{
  color:#999;
  margin-bottom:10px;
  font-size: 30px;
}

.t-heading{
  font-size: 40px;
  margin-bottom:10px;
}

.t-desc{
  color:#666;
}

/* WRAPPER */
.t-flex{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:50px;
  position:relative;
}

/* QUOTES */
.t-quote{
  font-size:130px;
  color:#ffe600;
  width:30%;
  text-align:center;
}

.t-left{
  text-align:right;
}

.t-right{
  text-align:left;
}

/* SLIDER */
.t-slider{
  width:60%;
}

/* CARD */
.t-card{
  text-align:center;
  padding:30px;
}

.t-card p{
  margin-top:20px;
}

.t-card h4{
  margin-top:5px;
}

.t-card span{
  color:#999;
  font-size:14px;
}

.t-card img{
  width:140px;
  height:140px;
  border-radius:50%;
  margin-top:15px;
  margin-left: 300px;
}

/* PAGINATION */
.swiper-pagination-bullet{
  background:#ccc;
}

.swiper-pagination-bullet-active{
  background:#000;
}

/* DIVIDER */
.t-divider{
  width:80%;
  height:1px;
  background:#eee;
  margin:60px auto;
}

/* RESPONSIVE */
@media(max-width:992px){
  .t-slider{
    width:80%;
  }
  .t-quote{
    display:none;
  }
}

@media(max-width:600px){
  .t-heading{
    font-size:24px;
  }
}


















/* /////////////////////////////////////////////////////////////////////////////CONTECT  */

.main-1 {
  background: linear-gradient(135deg, #0b0f1a, #111827);
}

/* section */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* card */
.contact-card {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  overflow: hidden;
  animation: fadeUp 1.2s ease;
}

/* responsive */
@media(max-width:800px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 40px;
  }

  .contact-left h2 {
    font-size: 28px;
  }
}

@media(max-width:480px) {
  .contact-section {
    padding: 20px;
    min-height: auto;
  }

  .contact-card {
    border-radius: 15px;
  }

  .contact-left,
  .contact-right {
    padding: 25px;
  }

  .contact-left h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .contact-left p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .input-group {
    margin-bottom: 18px;
  }

  .input-group input,
  .input-group textarea,
  .input-group select {
    font-size: 14px;
    padding: 12px 10px;
  }

  .sk-2 {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* left */
.contact-left {
  padding: 50px;
  color: #fff;
  background: linear-gradient(160deg, #111827, #1f2933);
}

.contact-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-left p {
  opacity: .8;
  line-height: 1.6;
  margin-bottom: 25px;
  color: white;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-info i {
  color: #ff6a00;
  margin-right: 10px;
}

/* right */
.contact-right {
  padding: 50px;
  background: rgba(0, 0, 0, .25);
}

/* inputs */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #555;
  color: #fff;
  outline: none;
  font-size: 14px;
}

/* textarea */
.input-group textarea {
  resize: none;
  height: 100px;
}

/* select extra */
.input-group select {
  appearance: none;
  cursor: pointer;
}

/* dropdown options */
.input-group select option {
  color: #000;
}

/* fix empty select */
.input-group select:required:invalid {
  color: #aaa;
}

/* label */
.input-group label {
  position: absolute;
  top: 12px;
  left: 10px;
  font-size: 13px;
  color: #aaa;
  pointer-events: none;
  transition: .3s;
}

/* floating label */
.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: -10px;
  font-size: 11px;
  color: #ff6a00;
}

/* button */
.sk-2 {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: .4s;
  list-style: none;
  text-decoration: none;
}

.sk-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, .5);
}



/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




















/* ////////////////////////////////////////////////////////////FOOTER  */





.footer{
  /* background:#f5f5f5; */
  padding:60px 80px;
  position:relative;
  overflow:hidden;
}


.footer{
  max-width:1450px;   /* 👈 width kam */
  margin:40px auto;   /* 👈 center + top/bottom space */
  border-radius:10px; /* 👈 optional (nice look) */
}



/* watermark */
.footer::after{
  content:"";
  position:absolute;
  right: 60px;
  top:  50px;
  width:500px;
  height:500px;
  background:url('img/favicon.jpg.png') no-repeat center;
  background-size:contain;
  opacity:0.05;

  pointer-events: none; /* ✅ IMPORTANT FIX */
}

/* LOGO */
.logo{
  margin-bottom:40px;
  margin-left: -14px;
}
.logo img{
  width:220px;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:40px;
}

/* LINKS */
.footer a{
  text-decoration:none;
  color:#333;
  transition:0.3s;
}

.footer a:hover{
  color: orangered;
}

/* HEADINGS */
.footer h3{
  font-size:24px;
  margin-bottom:15px;
}

.footer h3::after{
  content:"";
  display:block;
  width:30px;
  height:3px;
  background:orangered;
  margin-top:8px;
}

/* LIST */
.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin:10px 0;
  font-size:14px;
}

/* NEWSLETTER */
.newsletter p{
  margin-bottom:15px;
}

.input-box{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  border:1px solid #ddd;
}

.input-box input{
  border:none;
  padding:12px;
  flex:1;
  outline:none;
}

.input-box button{
  background:orangered;
  border:none;
  color:#fff;
  padding:12px 16px;
  cursor:pointer;
  border-radius:0 30px 30px 0;
}


/* SOCIAL */
.social-icons i{
  margin-right:15px;
  font-size:30px;
  cursor:pointer;
  transition:0.3s;
}

.social-icons i:hover{
  color:orangered;
}

/* TABLET */
@media(max-width:1024px){
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
  }
}

/* MOBILE */
@media(max-width:600px){
  .footer{
    padding:40px 20px;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}