:root {
            --primary: #004E98;
            --secondary: #C0AE8E;
            --accent-1: #F7F3EB;
            --accent-2: #b9a052;
            --accent-3: #44342E;
            --background: #ebf5f5;
            --card-bg: #d5c697;
            --header-bg: #c7b375;
            --text-primary: #44342E;
            --text-secondary: #5F5B53;
            --shadow: rgba(0, 0, 0, 0.1);
            --main-font: 'Cochin', 'Cormorant Garamond', serif;
        }

        body {
            font-family: var(--main-font);
            background-color: var(--background);
            color: var(--text-primary);
            min-height: 100vh;
            padding-top: 80px;
        }

        h1, h2, h3 {
            font-family: var(--main-font);
            color: var(--text-primary);
        }
        p, h4, h5, h6, a, span, li, input, textarea, button {
            font-family: var(--main-font);
        }
        .navbar-container{
             background: var(--background);
        }
        .fancy-hr {
            border: 0;
            height: 5px;
            background: radial-gradient(
                ellipse at center,
                #4a301d 0%,
                #c57f4e 40%,
                transparent 90%
            );
            margin: 3px 0;
        }


        .navbar {
            background-color: var(--background) !important;
            box-shadow: 0 2px 10px var(--shadow);
            padding: 0.02rem 1rem;
            margin-bottom: 0rem ;
            height: 124px;
        }

        .navbar .nav-link {
            font-family: 'Roboto', sans-serif !important;
            font-size: 16px !important;
            color: var(--text-primary) !important;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar .nav-link:hover {
            color: var(--primary) !important;
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }

        .navbar .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }

/* hero section styling */
  .hero-container {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            opacity: 0.1;

        }
        .text-justify{
           text-align :justify;
        }

        @keyframes bgShift {
            0% { transform: scale(1) rotate(0deg); }
            100% { transform: scale(1.05) rotate(1deg); }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 40px;
            height: 40px;
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 2;
            animation: cardSlideIn 1s ease-out;
            transition: all 0.3s ease;
        }

        .hero-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        @keyframes cardSlideIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .text-content {
            text-align: center;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #1ba6e0 50%, #1ba6e0 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite alternate;

            line-height: 1.1;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: black;
            font-weight: bold;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-description {
            font-size: 1.5 rem;
            color: black;
            line-height: 1.7;
            margin-bottom: 0.5rem;
            padding: 0rem 0rem !important;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        .hero-description-bulls {
            font-size: 1.15rem !important;
            color: black;
            line-height: 1.7;
            margin-bottom: 0.5rem;
            padding: 0rem 0rem !important;
            animation: fadeInUp 1s ease-out 0.6s both;
            font-family: var(--main-font) !important;
        }
        p {
          margin-top: 0;
          margin-bottom: 0.41rem;
          }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-container {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }

        .cta-primary {
            background: linear-gradient(135deg, #0529bb, #f67f30);
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .cta-secondary {
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        .image-container {
            position: relative;
            animation: fadeInUp 1s ease-out 1.2s both;
        }
        .image-container-comment {
            position: relative;

        }

        .hero-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 20px;
            transition: all 0.3s ease;
            filter: brightness(0.9) contrast(1.1);
        }

        .hero-image:hover {
            transform: scale(1.05);
            filter: brightness(1) contrast(1.2);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
            border-radius: 20px;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .image-container:hover .image-overlay {
            opacity: 0.2;
        }

        .pulse-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .hero-card {

                margin: 1rem;
                border-radius: 20px;
            }

            .hero-content {
                gap: 2rem;
            }

            .hero-subtitle {
                font-size: 1.35rem;
            }

            .hero-description {
                font-size: 1.20rem;
                color: black !important;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 280px;
            }

            .floating-circle {
                display: none; /* Hide on mobile for better performance */
            }
        }

        @media (min-width: 769px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
                text-align: left;
            }

            .text-content {
                text-align: left;
            }

            .cta-container {
                justify-content: flex-start;
            }

            .hero-image {
                height: 400px;
            }
        }

        /* Interactive touch animations for mobile */
        @media (hover: none) and (pointer: coarse) {
            .hero-card:active {
                transform: scale(0.98);
            }

            .cta-btn:active {
                transform: scale(0.95);
            }
        }

/* Video continer styling*/
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Why choose us styling */
        .why-choose-section {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin: 2rem 1rem 0;
            border: 1px solid rgba(255,255,255,0.2);

        }

        .why-choose-section h2 {
            color: #2ba9e3;
            font-size: clamp(1.5rem, 5vw, 2.5rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .ruler {
            border: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #fe721c, transparent);
            margin: 1rem 0 2rem;
        }

        .feature {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .feature:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        /* Enhanced styling for the hero section */
        .hero-subtext {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: centre;
            padding: 2rem 1rem;
        }

/* sidebar styling */
  .sidebar {
            height: 100vh;
             background: rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin: 2rem 1rem 0;
            padding: 2rem 1rem;
            border: 1px solid rgba(255,255,255,0.2);

            padding: 20px;
            color: #ffffff;
            top: 0;
            left: 0;
            padding-top: 30px
        }

        .sidebar h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
        }

        .sidebar hr {
            border-top: 1px solid #6c757d;
        }
        .side{
            padding-top: 10px
        }

        .content {
            min-height: 100vh;
            overflow-y: auto;

        }

        /* Optional: Prevent horizontal scroll */
        .container-fluid {
            overflow-x: hidden;
        }
        .nav-pills .nav-link {
            color: #adb5bd;
            font-weight: 500;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            border-radius: 6px;
            padding: 10px 15px;
        }

        .nav-pills .nav-link:hover {
            background-color: #2f3e51;
            color: #ffffff;
        }

        .nav-pills .nav-link.active {
            background-color: #4c6ef5;
            color: #fff;
        }

        .sidebar h4.sidebar-heading {
            color: black;
        }

/* timer container styling */
.timer-container {
            text-align: center;
            max-width: 800px;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .event-title {

            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
}
        }

        .event-description {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .countdown-container {
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
            transition: all 0.5s ease-out;
        }

        .countdown-container.hidden {
            opacity: 0;
            transform: translateY(-20px);
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: nowrap;
            margin-bottom: 1rem;
            overflow-x: auto;
        }

        .time-unit {
            background: rgba(255, 255, 255, 0.2);
            padding: 1rem 0.5rem;
            border-radius: 15px;
            min-width: 70px;
            flex: 1;
            max-width: 120px;
            transition: transform 0.3s ease;
        }

        .time-unit:hover {
            transform: translateY(-5px);
        }

        .time-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
            line-height: 1;
        }

        .time-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            margin-top: 0.5rem;
        }

        .server-time {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-top: 1rem;
        }

        .event-live {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease-out;
            display: none;
        }

        .event-live.show {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ff4757;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .live-dot {
            width: 10px;
            height: 10px;
            background: white;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .event-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 1rem;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 1rem 0.5rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .controls {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .demo-button {
            background: rgba(275, 25, 255, 0.2);
            color: black;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            cursor: pointer;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .demo-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            .event-title {
                font-size: 2rem;
            }

            .countdown {
                gap: 0.5rem;
            }

            .time-unit {
                min-width: 60px;
                padding: 0.8rem 0.3rem;
            }

            .time-number {
                font-size: 1.8rem;
            }

            .time-label {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .time-unit {
                min-width: 50px;
                padding: 0.6rem 0.2rem;
            }

            .time-number {
                font-size: 1.5rem;
            }

            .time-label {
                font-size: 0.6rem;
            }
        }
        .timer-body{
             body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        }
.timertext-container {
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #667eea;
    position: relative;
    overflow: hidden;
}
.timervideo-container {
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #667eea;
    position: relative;
    overflow: hidden;
}

.timertext-container::before {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    opacity: 0.3;
}

.timertext-container h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.timervideo-container h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timertext-container p {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    text-align: left;
    font-weight: 400;
    margin: 0;
}
/* Blog section styling */
  .banner {
            height: 20vh;
            min-height: 120px;
           background: #cdd4f0; /* slight dark background */
           border-radius: 12px;            /* rounded corners */
           color: black;
        }
        .banner h2 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .banner p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: #666;
        }
  .article-subtitle{
       color: var(--primary) !important;
       font-size : 1.2rem ;
  }
  hr{
    margin: 2px;
    opacity: 0.12 ;
  }
  .article-body {
  overflow-x: hidden;
}

.article-body pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-body img,
.article-body iframe,
.article-body video {
  max-width: 100%;
  height: auto;
}

/*navbar toggler*/
/* Only show the animation on small screens */
@media (max-width: 991.98px) {
  .pulse-border {
    position: relative;
    z-index: 10; /* keep it above */
    border: 2px solid rgba(251, 118, 28 ,0.7);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: pulseGlow 1.5s infinite;
  }

  /* Add a glowing pulse circle */
  .pulse-border::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(251, 118, 28, 0.4);
    border-radius: 50%;
    animation: pulseCircle 1.5s infinite;
    z-index: -1;
  }
}

/* Glowing animation on the border */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.5);
  }
}

/* Expanding pulse circle effect */
@keyframes pulseCircle {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* footer styling*/
.contact-section {
            position: relative;
            padding: 6rem 0;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        .contact-section-bulls {
            position: relative;

            background: linear-gradient(135deg, #bcc4c4 0%, #bcc4c4 50%, #f69c5d 100%);

            overflow: hidden;
        }

        .contact-section-bulls::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            animation: float-particle 8s linear infinite;
        }

        .particle:nth-child(odd) {
            background: rgba(118, 75, 162, 0.3);
            animation-duration: 12s;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #764ba2 0%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.8rem;
        }
         .section-title-bulls {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, #24a8e1 0%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.8rem;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .section-subtitle-bulls {
            font-size: 1.2rem;
            color: black;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .contact-info {
            display: grid;
            gap: 2.5rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .info-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #764ba2;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .info-title-bulls {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #24a8e1;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .info-title i {
            font-size: 1.3rem;
        }
        .info-title-bulls i {
            font-size: 1.3rem;
        }

        .info-content {
            color: rgba(0, 0, 0, 0.8);
            line-height: 1.6;
        }

        .info-content a {
            color: rgba(0, 0, 0, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .container-bulls{
        padding: 0rem o rem !important
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: rgba(0, 0, 0, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .social-link.twitter:hover { background: #1da1f2; }
        .social-link.facebook:hover { background: #1877f2; }
        .social-link.github:hover { background: #333; }
        .social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .social-link.linkedin:hover { background: #0077b5; }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .contact-section {
                padding: 4rem 0;
            }

            .container {
                padding:  0.1rem 1rem;
                border-radius: 2rem !important;

            }



            .social-links {
                justify-content: center;
            }

            .particle {
                display: none; /* Hide particles on mobile for performance */
            }
        }

        @media (min-width: 769px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }

            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .contact-grid {
                gap: 6rem;
            }

            .contact-form-wrapper {
                padding: 4rem;
            }
        }

col{
      padding-right: 0 !important;
      padding-left: 0 !important;
}
.back-link {
            text-align: center;
            margin-top: 1.5rem;
        }

        .back-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .back-link a:hover {
            text-decoration: underline;
        }

        /* Comment Section Styles */
        .comment-section {
            max-width: 800px;
            padding: 2rem;
            background: linear-gradient(135deg, var(--background) 0%, var(--background) 100%);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .comment-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
        }

        .comment-section > * {
            position: relative;
            z-index: 2;
        }

        .comments-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

        .comments-count {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .sort-dropdown {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .sort-dropdown:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .comment {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 0.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;

        }

        .comment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #667eea, #764ba2);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .comment:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .comment:hover::before {
            transform: scaleY(1);
        }

        .comment-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .comment-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .author-info h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
        }

        .comment-time {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #718096;
            font-size: 0.85rem;
            margin-top: 2px;
        }

        .time-icon {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        .comment-content {
            color: #4a5568;
            line-height: 1.6;
            font-size: 1rem;
            margin: 0;
        }

        .comment-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            color: #718096;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }

        .action-btn:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
        }

        .action-btn.liked {
            color: #e53e3e;
        }

        .reply-btn {
            margin-left: auto;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
        }

        .reply-btn:hover {
            background: linear-gradient(45deg, #5a67d8, #6b46c1);
            color: white;
            transform: translateY(-1px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .comment-section {
                padding: 1.5rem;
                border-radius: 16px;
            }

            .comments-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .comment-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .comment-actions {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
        }

        /* Animation for new comments */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .comment {
            animation: slideIn 0.5s ease-out;

        }
